IManipulator.Id 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 or sets a unique identifier for the object.
public:
property int Id { int get(); };
public int Id { get; }
member this.Id : int
Public ReadOnly Property Id As Integer
Property Value
A unique identifier for the object.
Remarks
The Id property should be unique for each object of a certain type. For example, if the types Manipulator1 and Manipulator2 implement IManipulator, all of the objects of type Maniplulator1 must have unique Id values, but an object of type Manipulator1 might have the same Id as an object of type Manipulator2.