BorderLeftMargin Example

Land Auto

BorderLeftMargin Example

Sub Example_BorderLeftMargin()
    
    ' This example returns the BorderLeftMargin setting for the current drawing.
    Dim dbPref As AeccDatabasePreferences
    Set dbPref = AeccApplication.ActiveDocument.Preferences
    
    MsgBox "The current value for BorderLeftMargin is: " & dbPref.BorderLeftMargin, _
        vbInformation, "BorderLeftMargin Example"
    
End Sub