GefLineFormat.DashStyle (property)

Gets and sets the dash style of the border as a GefLineStyleEnum
Syntax: GefLineStyleEnum = object.DashStyle
object.DashStyle = GefLineStyleEnum
Description: Use gefLineNone for no border and gefLineSolid for a solid border.

Example:

Sub LineFormat_DashStyle()
    
    Dim oCimObj As GefObject
    Dim oCimLineFmt As GefLineFormat
    
    Set oCimObj = CimGetObject
    Set oCimLineFmt = oCimObj.Line
    oCimLineFmt.DashStyle = gefLineLongDashDot
    cimgetscreen.Refresh False
    
End Sub