BorderBlockFilename Example

Land Auto

BorderBlockFilename Example

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