Solid Edge FrameworkSupport Type Library
AddByPoints Method
Specifies the number of points in the Points array.
Specifies the x and y coordinates of the points used to define the boundary geometry.
Description
Creates the referenced object by specifying a set of points.
Syntax
Visual Basic
Public Function AddByPoints( _
   ByVal PointCount As Long, _
   ByRef Points() As Double _
) As Boundary2d
Parameters
PointCount
Specifies the number of points in the Points array.
Points
Specifies the x and y coordinates of the points used to define the boundary geometry.
Remarks
The active Fill Style is assigned to the Boundary2d object created by this method. No relationships to bounding objects are created by this method. This method can only create a simple boundary without any holes.
Example
Private Sub Form_Load()
    Dim objApp As SolidEdgeFramework.Application
    Dim objDoc As SolidEdgeDraft.DraftDocument
    Dim objSheet As SolidEdgeDraft.Sheet
    Dim objBounds As SolidEdgeFrameworkSupport.Boundaries2d
    Dim dblPoint(1 To 8) As Double
    ' 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 Boundaries2d object on the active sheet
    Set objBounds = objSheet.Boundaries2d
    ' Create a Points array
    dblPoint(1) = 0.1
    dblPoint(2) = 0.2
    dblPoint(3) = 0.3
    dblPoint(4) = 0.35
    dblPoint(5) = 0.4
    dblPoint(6) = 0.1
    dblPoint(7) = 0.25
    dblPoint(8) = 0.1
    ' Create a Boundary2d object
    Call objBounds.AddByPoints(PointCount:=4, Points:=dblPoint)
    ' USER DISPLAY
    ' Release objects
    Set objApp = Nothing
    Set objDoc = Nothing
    Set objSheet = Nothing
    Set objBounds = Nothing
End Sub
See Also

Boundaries2d Collection  | Boundaries2d Members