Solid Edge Part Type Library
AttachedPropertyTables Collection
Members 
Description
Represents a collection of AttachedPropertyTable objects.
Example
Imports System.IO
Imports System.Runtime.InteropServices

Module Example
    <STAThread()> _
    Sub Main()
        Dim objApplication As SolidEdgeFramework.Application = Nothing
        Dim objPartDocument As SolidEdgePart.PartDocument = Nothing
        Dim objAttachedPropertyTables As SolidEdgePart.AttachedPropertyTables = Nothing

        Try
            OleMessageFilter.Register()

            objApplication = Marshal.GetActiveObject("SolidEdge.Application")
            objPartDocument = objApplication.ActiveDocument
            objAttachedPropertyTables = objPartDocument.AttachedPropertyTables

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

End Module
See Also

AttachedPropertyTables Members