Solid Edge FrameworkSupport Type Library
RemoveAllSegmentedStyles Method
Description
Removes all segments defined for the referenced graphic object.
Syntax
Visual Basic
Public Sub RemoveAllSegmentedStyles() 
Remarks
Removing segmented styles does not remove the geometry. Instead, it removes the linear styles applied to the graphic object defined by the segments. If a segment is blank (for example, when the linear style is null), it reappears when its segment is removed.
Example
Private Sub Form_Load()
    Dim objApp As SolidEdgeFrameWork.Application
    Dim objDoc As SolidEdgeDraft.DraftDocument
    Dim objSheet As SolidEdgeDraft.Sheet
    Dim objEllpArc As SolidEdgeFrameworkSupport.EllipticalArc2d
    Dim objLinStyle1 As SolidEdgeFrameWork.LinearStyle
    Dim objLinStyle2 As SolidEdgeFrameWork.LinearStyle
    Dim objLinStyle3 As SolidEdgeFrameWork.LinearStyle
    Dim dblStrt As Double
    Dim dblFin As Double
    Dim strStyleName As String, strStyleParent As String
    Dim xStart As Double, yStart As Double, xEnd As Double, yEnd As Double
    Dim x1 As Double, y1 As Double, x2 As Double, y2 As Double
    Dim objStyle As Object
    Dim lngIdx As Long
    ' 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.DraftDocument")
        objApp.Visible = True
    Else
        Set objDoc = objApp.ActiveDocument
    End If
    'getting the Active Sheet object
    Set objSheet = objDoc.ActiveSheet
    'Create an EllipticalArc object
    dblStrt = 0 * PI / 180
    dblFin = 90 * PI / 180
    Set objEllpArc = objSheet.EllipticalArcs2d.AddByCenter(xCenter:=0.25, yCenter:=0.25, _
                                                           xMajoraxis:=0.03, yMajoraxis:=0, Ratio:=0.5, _
                                                           Orientation:=0, StartAngle:=dblStrt, EndAngle:=dblFin)

    ' Create a LinearStyle2d Object
    strStyleName = "LinearStyleDotted"
    strStyleParent = "Dotted"
    Set objLinStyle1 = objDoc.LinearStyles.Add(Name:=strStyleName, Parent:=strStyleParent)
    ' Get the Start point of the EllipticalArc
    Call objEllpArc.GetStartPoint(x:=xStart, y:=yStart)
    ' Get the End point of the EllipticalArc
    Call objEllpArc.GetEndPoint(x:=xEnd, y:=yEnd)
    Call objEllpArc.AddSegmentedStyle(x1:=xStart, y1:=yStart, _
                                      x2:=0.25, y2:=0.235, Style:=objLinStyle1)

    ' Create a LinearStyle2d Object
    strStyleName = "LinearStyleDashed"
    strStyleParent = "Center"
    Set objLinStyle2 = objDoc.LinearStyles.Add(Name:=strStyleName, Parent:=strStyleParent)
    Call objEllpArc.AddSegmentedStyle(x1:=0.22, y1:=0.25, _
                                      x2:=xEnd, y2:=yEnd, Style:=objLinStyle2)

    ' Create a LinearStyle2d Object
    strStyleName = "LinearStyleCenter"
    strStyleParent = "Center"
    Set objLinStyle3 = objDoc.LinearStyles.Add(Name:=strStyleName, Parent:=strStyleParent)

    Call objEllpArc.AddSegmentedStyle(x1:=0.25, y1:=0.235, _
                                      x2:=0.22, y2:=0.25, Style:=objLinStyle3)
    ' Remove All SegmentedStyles
    Call objEllpArc.RemoveAllSegmentedStyles
    ' USER DISPLAY
    ' Release objects
    Set objApp = Nothing
    Set objDoc = Nothing
    Set objSheet = Nothing
    Set objEllpArc = Nothing
    Set objLinStyle1 = Nothing
    Set objLinStyle2 = Nothing
    Set objLinStyle3 = Nothing
End Sub
See Also

EllipticalArc2d Object  | EllipticalArc2d Members

Send comments on this topic.