Solid Edge FrameworkSupport Type Library
GetSegmentedStyle Method
Specifies the index of the segmented style to return.
Coordinates for the start of the segment.
Coordinates for the start of the segment.
Coordinates for the end of the segment.
Coordinates for the end of the segment.
LinearStyle object applied to the segment.
Description
Returns the start point, end point, and linear style applied to a specified segment of a 2-D geometry object.
Syntax
Visual Basic
Public Sub GetSegmentedStyle( _
   ByVal Index As Long, _
   ByRef x1 As Double, _
   ByRef y1 As Double, _
   ByRef x2 As Double, _
   ByRef y2 As Double, _
   ByRef Style As Object _
) 
Parameters
Index
Specifies the index of the segmented style to return.
x1
Coordinates for the start of the segment.
y1
Coordinates for the start of the segment.
x2
Coordinates for the end of the segment.
y2
Coordinates for the end of the segment.
Style
LinearStyle object applied to the segment.
Remarks
The segment is specified by its index value.
Example
Private Sub Form_Load()
    Dim objApp As SolidEdgeFrameWork.Application
    Dim objDoc As SolidEdgeDraft.DraftDocument
    Dim objSheet As SolidEdgeDraft.Sheet
    Dim objLines2d As SolidEdgeFrameworkSupport.Lines2d
    Dim objLine1 As SolidEdgeFrameworkSupport.Line2d
    Dim objStyle1 As SolidEdgeFrameWork.LinearStyle
    Dim objGetStyle As Object
    Dim dblx1 As Double, dbly1 As Double, dblx2 As Double, dbly2 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
    'get linear style object
    Set objStyle1 = objDoc.LinearStyles(7)
    ' getting the lines2d collection object
    Set objLines2d = objSheet.Lines2d
    ' Create Line2d object using AddBy2Points method
    Set objLine1 = objLines2d.AddBy2Points(x1:=0.05, y1:=0.05, x2:=0.1, y2:=0.05)
    ' add segment style to the line2d object
    Call objLine1.AddSegmentedStyle(x1:=0.05, y1:=0.05, x2:=0.1, _
                                    y2:=0.05, Style:=objStyle1)
    'get Segemented style
    Call objLine1.GetSegmentedStyle(Index:=1, x1:=dblx1, y1:=dbly1, x2:=dblx2, y2:=dbly2, Style:=objGetStyle)
    ' USER DISPLAY
    ' Release objects
    Set objApp = Nothing
    Set objDoc = Nothing
    Set objSheet = Nothing
    Set objLines2d = Nothing
    Set objLine1 = Nothing
    Set objStyle1 = Nothing
End Sub
See Also

Line2d Object  | Line2d Members