Solid Edge Part Type Library
Constructions Collection
Members 
Description
Represents a collection of Construction objects.
Remarks
The Constructions object represents a collection of all constructions, regardless of type, for a part.
Example
Imports System.IO
Imports System.Runtime.InteropServices

Module Example
    <STAThread()> _
    Sub Main()

        Dim objApplication As SolidEdgeFramework.Application
        Dim objPartDocument As SolidEdgePart.PartDocument
        Dim objConstructions As SolidEdgePart.Constructions

        Try
            OleMessageFilter.Register()

            objApplication = Marshal.GetActiveObject("SolidEdge.Application")
            objPartDocument = objApplication.ActiveDocument
            objConstructions = objPartDocument.Constructions

        Catch ex As Exception
            Console.WriteLine(ex.Message)
        Finally
            OleMessageFilter.Revoke()
        End Try
    End Sub
End Module
See Also

Constructions Members