FacetDeviation Example

Land Auto

FacetDeviation Example

Sub Example_FacetDeviation()
    
    ' This example displays the FacetDeviation setting for the current drawing.
    Dim dbPref As AeccDatabasePreferences
    Set dbPref = AeccApplication.ActiveDocument.preferences
    
    MsgBox "The setting for FacetDeviation is: " & dbPref.FacetDeviation, _
        vbInformation, "FacetDeviation Example"
    
End Sub