Solid Edge Part Type Library
Plane Property
Description
For dimensions, returns the planar object used by the dimension to measure an object. For profiles, CopiedPart objects, and CopyConstruction objects, sets and returns the associated RefPlane object.
Property type
Read-write property
Syntax
Visual Basic
Public Property Plane As Object
Example
Private Sub Form_Load()
    Dim objApp As SolidEdgeFramework.Application
    Dim objDoc As SolidEdgePart.PartDocument
    Dim objProfile As SolidEdgePart.Profile
    Dim objPlane As SolidEdgePart.RefPlane
    ' 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
    'Create a Profile object
    Set objProfile = objDoc.ProfileSets.Add.Profiles.Add(pRefPlaneDisp:=objDoc.RefPlanes(1))
    'Assign the Plane of Profile to a New object
    Set objPlane = objProfile.Plane
    ' USER DISPLAY
    ' Release objects
    Set objApp = Nothing
    Set objDoc = Nothing
    Set objPlane = Nothing
    Set objProfile = Nothing
End Sub
See Also

Profile Object  | Profile Members