Solid Edge FrameworkSupport Type Library
Add Method
For annotation objects, this argument is the x coordinate of the terminal end of the annotation object's leader. For dimensioning objects, this argument is the x coordinate for the start of the object.
For annotation objects, this argument is the y coordinate of the terminal end of the annotation object's leader. For dimensioning objects, this argument is the y coordinate for the start of the object.
For annotation objects, this argument is the z coordinate of the terminal end of the annotation object's leader. For dimensioning objects, this argument is the z coordinate for the start of the object.
For annotation objects, this argument is the x coordinate of the break point of the annotation object's leader. For dimensioning objects, this argument is the x coordinate for the end of the object.
For annotation objects, this argument is the y coordinate of the break point of the annotation object's leader. For dimensioning objects, this argument is the y coordinate for the end of the object.
For annotation objects, this argument is the z coordinate of the break point of the annotation object's leader. For dimensioning objects, this argument is the z coordinate for the end of the object.
Description
Adds an occurrence of the referenced object.
Syntax
Visual Basic
Public Function Add( _
   ByVal x1 As Double, _
   ByVal y1 As Double, _
   ByVal z1 As Double, _
   ByVal x2 As Double, _
   ByVal y2 As Double, _
   ByVal z2 As Double _
) As Leader
Parameters
x1
For annotation objects, this argument is the x coordinate of the terminal end of the annotation object's leader. For dimensioning objects, this argument is the x coordinate for the start of the object.
y1
For annotation objects, this argument is the y coordinate of the terminal end of the annotation object's leader. For dimensioning objects, this argument is the y coordinate for the start of the object.
z1
For annotation objects, this argument is the z coordinate of the terminal end of the annotation object's leader. For dimensioning objects, this argument is the z coordinate for the start of the object.
x2
For annotation objects, this argument is the x coordinate of the break point of the annotation object's leader. For dimensioning objects, this argument is the x coordinate for the end of the object.
y2
For annotation objects, this argument is the y coordinate of the break point of the annotation object's leader. For dimensioning objects, this argument is the y coordinate for the end of the object.
z2
For annotation objects, this argument is the z coordinate of the break point of the annotation object's leader. For dimensioning objects, this argument is the z coordinate for the end of the object.
Example
Private Sub Form_Load()
    Dim objApp As SolidEdgeFramework.Application
    Dim objDoc As SolidEdgeDraft.DraftDocument
    Dim objSheet As SolidEdgeDraft.Sheet
    Dim objTextBox As SolidEdgeFrameworkSupport.TextBox
    Dim objLeaders As SolidEdgeFrameworkSupport.Leaders
    ' 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
    'Create a text Box in the active sheet.
    Set objTextBox = objSheet.TextBoxes.AddByHtWdAng(x1:=0.1, y1:=0.1, z1:=0, ht:=0.1, wd:=0.15, ang:=0)
    'Add some text to the Text
    objTextBox.Text = "THIS IS FOR TESTING ONLY"
    'Create Leaders collection object
    Set objLeaders = objSheet.Leaders
    'Create a leader attatched to text box
    Call objLeaders.Add(x1:=0.1, y1:=0.1, z1:=0, x2:=0.1, y2:=0.3, z2:=0)
    ' USER DISPLAY
    ' Release objects
    Set objApp = Nothing
    Set objDoc = Nothing
    Set objSheet = Nothing
    Set objTextBox = Nothing
    Set objLeaders = Nothing
End Sub
See Also

Leaders Collection  | Leaders Members

Send comments on this topic.