Solid Edge FrameworkSupport Type Library
Add Method
Specifies the x coordinate for the new object.
Specifies the y coordinate for the new object.
Specifies the z coordinate for the new 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 _
) As Balloon
Parameters
x1
Specifies the x coordinate for the new object.
y1
Specifies the y coordinate for the new object.
z1
Specifies the z coordinate for the new object.
Example
Private Sub Form_Load()
    Dim objApp As SolidEdgeFramework.Application
    Dim objDoc As SolidEdgeDraft.DraftDocument
    Dim objSheet As SolidEdgeDraft.Sheet
    Dim objBalloons As SolidEdgeFrameworkSupport.Balloons
    ' 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 Balloons collection object on the active sheet
    Set objBalloons = objSheet.Balloons
    ' adding a balloon on the active sheet
    Call objBalloons.Add(x1:=0.25, y1:=0.25, z1:=0)
    ' USER DISPLAY
    ' Release objects
    Set objApp = Nothing
    Set objDoc = Nothing
    Set objSheet = Nothing
    Set objBalloons = Nothing
End Sub
See Also

Balloons Collection  | Balloons Members

Send comments on this topic.