SheetHeight Example

Land Auto

SheetHeight Example

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