Solid Edge Part Type Library
PropertyTableDefinitions Property
Description
Returns the PropertyTableDefinitions object for the referenced document object.
Property type
Read-only property
Syntax
Visual Basic
Public Property PropertyTableDefinitions As PropertyTableDefinitions
Example
Private Sub Form_Load()
    Dim objApp As SolidEdgeFrameWork.Application
    Dim objDoc As SolidEdgePart.PartDocument
    Dim objPropertyTableDefinitions As SolidEdgePart.PropertyTableDefinitions
    ' Local variables to be declared here
    ' 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
    'Get PropertyTableDefinitions object from PartDocument
    Set objPropertyTableDefinitions = objDoc.PropertyTableDefinitions
    ' Release objects
    Set objApp = Nothing
    Set objDoc = Nothing
    Set objPropertyTableDefinitions = Nothing
End Sub
See Also

PartDocument Object  | PartDocument Members