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
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 objCircs As SolidEdgeFrameworkSupport.Circles2d
    Dim objCirc1 As SolidEdgeFrameworkSupport.Circle2d
    Dim objLinearSty1 As SolidEdgeFramework.LinearStyle
    Dim objLinearSty2 As SolidEdgeFramework.LinearStyle
    Dim objLinearStys As SolidEdgeFramework.LinearStyles
    ' 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
    ' Get the Linear styles collection object
    Set objLinearStys = objDoc.LinearStyles
    'Set linear style
    Set objLinearSty1 = objLinearStys.Add(Name:="Myline1", Parent:="Hidden")
    ' Get the Circles collection object
    Set objCircs = objSheet.Circles2d
    ' Ceate a circle object
    Set objCirc1 = objCircs.AddByCenterRadius(x:=0.25, y:=0.25, Radius:=0.06)
    ' Create SegmentedStyle on circle object
    Call objCirc1.AddSegmentedStyle(x1:=0.19, y1:=0.25, x2:=0.25, y2:=0.19, Style:=objLinearSty1)
    'Set another linear style
    Set objLinearSty2 = objLinearStys.Add(Name:="Myline2", Parent:="Center")
    ' Setting the segmented line style
    Call objCirc1.SetSegmentedStyle(1, objLinearSty2)
    ' USER DISPLAY
    ' Release objects
    Set objApp = Nothing
    Set objDoc = Nothing
    Set objSheet = Nothing
    Set objCircs = Nothing
    Set objCirc1 = Nothing
    Set objLinearSty1 = Nothing
    Set objLinearSty2 = Nothing
    Set objLinearStys = Nothing
End Sub
See Also

Circle2d Object  | Circle2d Members