Solid Edge FrameworkSupport Type Library
SegmentedStyleCount Property
Description
Returns the number of segmented styles defined for the referenced graphic object.
Property type
Read-only property
Syntax
Visual Basic
Public Property SegmentedStyleCount As Long
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 objStyle2 As SolidEdgeFrameWork.LinearStyle
    Dim lngStyCnt As Long
    ' 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
    ' 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)
    'get 2nos linear style object
    Set objStyle1 = objDoc.LinearStyles(3)
    ' Create a LinearStyle2d Object
    Set objStyle2 = objDoc.LinearStyles.Add(Name:="LinearStyleDotted", _
                                            Parent:="Dotted")

    'AddSegmentedStyle 1
    Call objLine1.AddSegmentedStyle(x1:=0.05, y1:=0.05, x2:=0.07, y2:=0.05, _
                                    Style:=objStyle1)
    'AddSegmentedStyle 2
    Call objLine1.AddSegmentedStyle(x1:=0.07, y1:=0.05, x2:=0.08, y2:=0.05, _
                                    Style:=objStyle2)
    'AddSegmentedStyle 3
    Call objLine1.AddSegmentedStyle(x1:=0.08, y1:=0.05, x2:=0.1, y2:=0.05, _
                                    Style:=objStyle1)
    'get segmented style count
    lngStyCnt = objLine1.SegmentedStyleCount
    ' USER DISPLAY
    ' Release objects
    Set objApp = Nothing
    Set objDoc = Nothing
    Set objSheet = Nothing
    Set objLines2d = Nothing
    Set objLine1 = Nothing
    Set objStyle1 = Nothing
    Set objStyle2 = Nothing
End Sub
See Also

Line2d Object  | Line2d Members