Solid Edge FrameworkSupport Type Library
AddSegmentedStyle Method
Double that specify the coordinates for the start of the segment.
Double that specify the coordinates for the start of the segment.
Double that specify the coordinates for the end of the segment.
Double that specify the coordinates for the end of the segment.
Specifies the LinearStyle2d object to assign to the segment.
Description
Defines a segment on a graphic object and assigns a linear style to that segment.
Syntax
Visual Basic
Public Sub AddSegmentedStyle( _
   ByVal x1 As Double, _
   ByVal y1 As Double, _
   ByVal x2 As Double, _
   ByVal y2 As Double, _
   ByVal Style As Object _
) 
Parameters
x1
Double that specify the coordinates for the start of the segment.
y1
Double that specify the coordinates for the start of the segment.
x2
Double that specify the coordinates for the end of the segment.
y2
Double that specify the coordinates for the end of the segment.
Style
Specifies the LinearStyle2d object to assign to the segment.
Remarks
To define the segment, this method accepts two points that specify the start and end of the segment. If a linear style does not exist for the formatting required 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 objStyle As SolidEdgeFrameWork.LinearStyle
    Dim objarc2d As SolidEdgeFrameworkSupport.Arc2d
    Dim objarcs2d As SolidEdgeFrameworkSupport.Arcs2d
    ' 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
    ' Creating an Arc2d collection object
    Set objarcs2d = objSheet.Arcs2d
    'Get linear style object
    Set objStyle = objDoc.LinearStyles(3)
    'create an Arc2d object
    Set objarc2d = objarcs2d.AddByStartAlongEnd(xStart:=0.1, yStart:=0.1, _
                                                xAlong:=0.15, yAlong:=0.2, xEnd:=0.2, yEnd:=0.3)
    ' Add segment style on the Arc2d object
    Call objarc2d.AddSegmentedStyle(x1:=0.1, y1:=0.1, x2:=0#, y2:=0.2, _
                                    Style:=objStyle)
    ' USER DISPLAY
    ' Release objects
    Set objApp = Nothing
    Set objDoc = Nothing
    Set objSheet = Nothing
    Set objStyle = Nothing
    Set objarcs2d = Nothing
    Set objarc2d = Nothing
End Sub
See Also

Arc2d Object  | Arc2d Members