IManipulator.Id Property

Definition

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.

Applies to