Solid Edge Part 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 SolidEdgePart.PartDocument
    Dim objSketch As SolidEdgePart.Sketch
    Dim objProfile As SolidEdgePart.Profile
    Dim objAttributesets As Object
    Dim sDumpStatus As String    ' Used for temporary storage of datadump return string
    ' 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.PartDocument")
        objApp.Visible = True
    Else
        Set objDoc = objApp.ActiveDocument
    End If
    On Error GoTo 0
    ' Create a Sketch object
    Set objSketch = objDoc.Sketches.Add

    Set objProfile = objSketch.Profiles.Add(pRefPlaneDisp:=objDoc.RefPlanes(1))
    Call objProfile.Circles2d.AddByCenterRadius(x:=0, y:=0, Radius:=0.01)
    'Get the Attributesets
    Set objAttributesets = objSketch.AttributeSets
    ' USER DISPLAY
    ' Release objects
    Set objApp = Nothing
    Set objDoc = Nothing
    Set objSketch = Nothing
    Set objProfile = Nothing
    Set objAttributesets = Nothing
End Sub
See Also

Sketch Object  | Sketch Members

Send comments on this topic.