Solid Edge FrameworkSupport Type Library
SetSegmentedStyle Method
Specifies the index for the segment of the graphic object that will receive the new linear style.
Specifies the new LinearStyle2d object to assign to the segment. A null style removes the segment from the graphic object.
Description
Applies a new linear style to a specified segment on a graphic object.
Syntax
Visual Basic
Public Sub SetSegmentedStyle( _
   ByVal Index As Long, _
   ByVal Style As Object _
) 
Parameters
Index
Specifies the index for the segment of the graphic object that will receive the new linear style.
Style
Specifies the new LinearStyle2d object to assign to the segment. A null style removes the segment from the graphic object.
Remarks
Specified by its index value. If a linear style does not exist for the formatting needed for the segment, create the linear style through the LinearStyles collection object.
Example
Private Sub Form_Load()
    Dim objApp As SolidEdgeFrameWork.Application
    Dim objDoc As SolidEdgeDraft.DraftDocument
    Dim objSheet As SolidEdgeDraft.Sheet
    Dim objStyle1 As SolidEdgeFrameWork.LinearStyle
    Dim objStyle2 As SolidEdgeFrameWork.LinearStyle
    Dim objStyle3 As SolidEdgeFrameWork.LinearStyle
    Dim objArcs2d As SolidEdgeFrameworkSupport.Arcs2d
    Dim objArc2d As SolidEdgeFrameworkSupport.Arc2d
    Dim x1 As Double, y1 As Double, x2 As Double, y2 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.DraftDocument")
        objApp.Visible = True
    Else
        Set objDoc = objApp.ActiveDocument
    End If
    'getting the Active Sheet object
    Set objSheet = objDoc.ActiveSheet
    'create arcs2d object
    Set objArcs2d = objSheet.Arcs2d
    'create an arc2d
    Set objArc2d = objArcs2d.AddByCenterStartEnd(xCenter:=0, yCenter:=0, xStart:=0.15, yStart:=0#, xEnd:=0, yEnd:=-0.15)
    'get 3nos linear style object
    Set objStyle1 = objDoc.LinearStyles(3)
    Set objStyle2 = objDoc.LinearStyles(7)
    Set objStyle3 = objDoc.LinearStyles(5)

    'AddSegmentedStyle 1
    Call objArc2d.AddSegmentedStyle(x1:=0.15, y1:=0#, x2:=0#, y2:=0.15, Style:=objStyle1)
    'AddSegmentedStyle 2
    Call objArc2d.AddSegmentedStyle(x1:=0#, y1:=0.15, x2:=-0.15, y2:=0#, Style:=objStyle2)
    'set segmment style
    'create 3rd linear style
    Call objArc2d.SetSegmentedStyle(Index:=1, Style:=objStyle3)
    ' USER DISPLAY
    ' Release objects
    Set objApp = Nothing
    Set objDoc = Nothing
    Set objSheet = Nothing
    Set objArcs2d = Nothing
    Set objArc2d = Nothing
    Set objStyle1 = Nothing
    Set objStyle2 = Nothing
    Set objStyle3 = Nothing
End Sub
See Also

Arc2d Object  | Arc2d Members

Send comments on this topic.