Solid Edge Part Type Library
AttachedPropertyTables Property
Description
Returns the AttachedPropertyTables object for the referenced document object.
Property type
Read-only property
Syntax
Visual Basic
Public Property AttachedPropertyTables As AttachedPropertyTables
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

PartDocument Object  | PartDocument Members