DependencyProperty.GlobalIndex Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Gets an internally generated value that uniquely identifies the dependency property.
public:
property int GlobalIndex { int get(); };
public int GlobalIndex { get; }
member this.GlobalIndex : int
Public ReadOnly Property GlobalIndex As Integer
Property Value
A unique numeric identifier.
Remarks
This value is an integer, not a globally unique identifier (GUID). Generally, using this index value is not required, and there is no index access to tables of all dependency properties. Dependency properties should instead be referenced by their identifier fields.
GlobalIndex is used internally for faster access to data structures that use the GlobalIndex as a zero-based array index. A similar usage might have applications for designers or tools.
Applies to
.NET