Solid Edge FrameworkSupport Type Library
AttributeSets Property
Description
Returns the AttributeSets collection object for the referenced object.
Property type
Read-only property
Syntax
Visual Basic
Public Property AttributeSets As Object
Example
Private Sub Form_Load()
    Dim objApp As SolidEdgeFrameWork.Application
    Dim objDoc As SolidEdgeDraft.DraftDocument
    Dim objSheet As SolidEdgeDraft.Sheet
    Dim objArc2d As SolidEdgeFrameworkSupport.Arc2d
    Dim objDimension As SolidEdgeFrameworkSupport.Dimension
    Dim objAttribSets As Object
    ' Report errors
    Const PI = 3.14159265358979
    ' Create/get the application with specific settings
    On Error Resume Next
    Set objApp = GetObject(, "SolidEdge.Application")
    If Err Then
        Err.Clear
        Set objApp = CreateObject("SolidEdge.Application")
        Set objDoc = objApp.Documents.Add("SolidEdge.DraftDocument")
        objApp.Visible = True
    Else
        Set objDoc = objApp.ActiveDocument
    End If
    'getting the Active Sheet object
    Set objSheet = objDoc.ActiveSheet
    'create an arc2d object
    Set objArc2d = objSheet.Arcs2d.AddByCenterStartEnd(xCenter:=0.2, _
                                                       yCenter:=0.2, xStart:=0.1, yStart:=0.1, xEnd:=0.3, yEnd:=0.3)
    'create dimension for the arc2d object
    Set objDimension = objSheet.Dimensions.AddAngle(Object:=objArc2d)
    ' Get the AttributeSets property
    Set objAttribSets = objDimension.AttributeSets
    ' USER DISPLAY
    ' Release objects
    Set objApp = Nothing
    Set objDoc = Nothing
    Set objSheet = Nothing
    Set objArc2d = Nothing
    Set objDimension = Nothing
    Set objAttribSets = Nothing
End Sub
See Also

Dimension Object  | Dimension Members