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 DatumPoint
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 objDatumPoints As SolidEdgeFrameworkSupport.DatumPoints
    Dim objDatumPoint As SolidEdgeFrameworkSupport.DatumPoint
    ' 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
    'Get the Active Sheet object
    Set objSheet = objDoc.ActiveSheet
    'get DatumPoints collection
    Set objDatumPoints = objSheet.DatumPoints
    'add a datumpoint to collection
    Set objDatumPoint = objDatumPoints.Add(x1:=0.2, y1:=0.2, z1:=0)
    ' USER DISPLAY
    ' Release objects
    Set objApp = Nothing
    Set objDoc = Nothing
    Set objSheet = Nothing
    Set objDatumPoints = Nothing
    Set objDatumPoint = Nothing
End Sub
See Also

DatumPoints Collection  | DatumPoints Members

Send comments on this topic.