Type | Description | |||
ID as Variant | A VARIANT expression that specifies the ID of the note being requested. The ID parameter of the Add method indicates the unique identifier of the note being added. If the ID parameter is a long expression between 0 and Count - 1, the Item property gets the Note by its index. | |||
Note | A Note object being accessed. |
The following VB sample prints the ID for each note in the control:
Dim n As EXG2ANTTLibCtl.Note For Each n In G2antt1.Chart.Notes Debug.Print n.ID Next