







Description
Sets or returns the linetype of the entity.
Property type
Read-write property
Syntax
Visual Basic |
---|
Public Property Linetype As String |
Example
Private Sub LinetypepropertyExample()
'This example returns the Linetype property.
Dim ents As Object
Dim ent As Object
Set ents = ActiveDocument.ModelSpace
Set ent = ents.Item(ents.Count - 1)
MsgBox "The Linetype property for the last entity is: " & ent.Linetype
End Sub