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
    ' 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





    ' USER DISPLAY
    ' Release objects
    Set objApp = Nothing
    Set objDoc = Nothing
    Set objSheet = Nothing
End Sub
See Also

Point2d Object  | Point2d Members

Send comments on this topic.