IntelliCAD 11.1 Object Library
Thickness Property
See Also 
Solid Object : Thickness Property

Description

Sets or returns the Thickness of the arc.

Property type

Read-write property

Syntax

Visual Basic
Public Property Thickness As Double

Example

Private Sub ThicknessExample()

' This example adds an arc to the drawing and returns the thickness.

     Dim icadDoc As IntelliCAD.Document

     Dim myArc As Arc

     Dim cenPt As IntelliCAD.Point

     Dim myObj As Object

     Dim myThickness As Double

     Set icadDoc = ActiveDocument

     Set cenPt = Library.CreatePoint(4, 2)

     'Add the arc to the .dwg

     Set myArc = icadDoc.ModelSpace.AddArc(cenPt, 3, 1, 3)

     ' Display the entity

     myArc.Update

     myThickness = myArc.Thickness

     MsgBox "Thickness = " & myThickness, , "Arc Thickness"

End Sub

See Also

© 2022 IntelliCAD Technology Consortium. All Rights Reserved.