Solid Edge Geometry Type Library
IsUserDefined Property
Description
Specifies whether or not the referenced collection has had edges or faces manually added to it.
Property type
Read-only property
Syntax
Visual Basic
Public Property IsUserDefined As Boolean
Example
Private Sub Form_Load()
    Dim objApp As SolidEdgeFramework.Application
    Dim objDoc As SolidEdgepart.PartDocument
    Dim objBody As SolidEdgeGeometry.Body
    Dim objEdgesCol As Object
    Const TESTFILE = "T:\vbtests\testcases\freeform.par"
    Dim bIsUserDefined 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
    ' Close active document if any
    Call objDoc.Close
    'Open a testcase file
    Set objDoc = objApp.Documents.Open(TESTFILE)
    ' Get the body object of the model
    Set objBody = objDoc.Models(1).Body
    'Create an userdefined EdgeCollection object
    Set objEdgesCol = objBody.CreateCollection(Type:=seEdgeCollection)
    'Capture the EdgesCollection status
    bIsUserDefined = objEdgesCol.IsUserDefined
    ' USER DISPLAY
    ' Release objects
    Set objApp = Nothing
    Set objDoc = Nothing
    Set objBody = Nothing
    Set objEdgesCol = Nothing
End Sub
See Also

Edges Collection  | Edges Members