Solid Edge FrameworkSupport Type Library
Angle Property
Description
Sets and returns the angular rotation of the referenced object.
Property type
Read-write property
Syntax
Visual Basic
Public Property Angle As Double
Remarks
For Rectangles, this value represents the rotation of the entire object. The angle is represented in Radians.
Example
Private Sub Form_Load()
    Dim objApp As SolidEdgeFramework.Application
    Dim objDoc As SolidEdgePart.PartDocument
    Dim objLines As SolidEdgeFrameworkSupport.Lines2d
    Dim objLine1 As SolidEdgeFrameworkSupport.Line2d
    Dim dblAng As Double
    ' 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 an empty Lines2d collection object
    Set objLines = objDoc.ProfileSets.Add.Profiles.Add(pRefPlaneDisp:=objDoc.RefPlanes(1)).Lines2d
    ' Create a Line2d object
    Set objLine1 = objLines.AddByPointAngleLength(x:=0, y:=0, Angle:=PI, Length:=0.1)
    ' Get the Angle Property
    dblAng = objLine1.Angle
    objLine1.Angle = PI / 2
    ' USER DISPLAY
    ' Release objects
    Set objApp = Nothing
    Set objDoc = Nothing
    Set objLines = Nothing
    Set objLine1 = Nothing
End Sub
See Also

Line2d Object  | Line2d Members