Leadtools.Annotations.Core Namespace > AnnObject Class : Id Property |
public int Id {get;}
Public ReadOnly Property Id As Integer
public int Id {get;}
@property (nonatomic,readonly) int iD;
public int getId()
get_Id();
The Id indicates the type of the annotation object. Possible values are:
This property is used to identity this object type. For example, the AnnRectangleObject will set its ID to RectangleObjectId while AnnTextObject will set its ID to TextObjectId.
The ID is used by other parts of the annotations framework to identify object types, for example, in the automation toolkit, the ID is used as the current object type to draw.
When deriving your own class from AnnObject, you must call override this method to return a unique ID for your object type. For more information, refer to Implementing User-Defined Objects With LEADTOOLS Annotations.