Description
Returns the handle of the item.
Property type
Read-only property
Syntax
Visual Basic |
---|
Public Property Handle As String |
Example
Private Sub HandleExample()
Dim myPt As IntelliCAD.Point
Set myPt = Library.CreatePoint(3, 2, 0)
Set myPtEnt = ThisDocument.ModelSpace.AddPointEntity
MsgBox "The handle of this entity is: " & myPtEnt.Handle
End Sub