Solid Edge Part Type Library
IsAttributeSetPresent Property
Description
Returns True if a specified Attribute Set exists on the referenced object.
Property type
Read-only property
Syntax
Visual Basic
Public Property IsAttributeSetPresent( _
   ByVal Name As String _
) As Boolean
Parameters
Name
Example
Private Sub Form_Load()
    Dim objApp As SolidEdgeFramework.Application
    Dim objDoc As SolidEdgePart.PartDocument
    Dim objSketchs As SolidEdgePart.Sketchs
    Dim objSketch As SolidEdgePart.Sketch
    Dim objProfile As SolidEdgePart.Profile
    Dim objAttributeSet As Object
    Dim bIsAttribPresent As Boolean
    ' 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

    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)
    'Set an Attibute Set "MyAttrib""
    Set objAttributeSet = objSketch.AttributeSets.Add("MyAttrib Set")
    'Check the Attribute Set presence "MyAttrib Set"
    bIsAttribPresent = objSketch.IsAttributeSetPresent("MyAttrib Set")
    ' USER DISPLAY
    ' Release objects
    Set objApp = Nothing
    Set objDoc = Nothing
    Set objSketchs = Nothing
    Set objSketch = Nothing
    Set objProfile = Nothing
    Set objAttributeSet = Nothing
End Sub
See Also

Sketch Object  | Sketch Members