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 objCircs As SolidEdgeFrameworkSupport.Circles2d
    Dim objCirc1 As SolidEdgeFrameworkSupport.Circle2d
    Dim objLinearSty 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 Circles collection object
    Set objCircs = objSheet.Circles2d
    'Create circle object
    Set objCirc1 = objCircs.AddByCenterRadius(x:=0.25, y:=0.25, Radius:=0.06)
    'Create a linear style
    Set objLinearStys = objDoc.LinearStyles
    Set objLinearSty = objLinearStys.Add(Name:="Myline1", Parent:="Hidden")
    'Add a style to the circle
    Call objCirc1.AddSegmentedStyle(x1:=0.19, y1:=0.25, x2:=0.25, y2:=0.19, Style:=objLinearSty)
    ' USER DISPLAY
    ' Release objects
    Set objApp = Nothing
    Set objDoc = Nothing
    Set objSheet = Nothing
    Set objCircs = Nothing
    Set objCirc1 = Nothing
    Set objLinearSty = Nothing
    Set objLinearStys = Nothing
End Sub
See Also

Circle2d Object  | Circle2d Members

Send comments on this topic.