Solid Edge Part Type Library
BooleanFeatures Property
Description
Returns the BooleanFeatures object for the referenced Model object.
Property type
Read-only property
Syntax
Visual Basic
Public Property BooleanFeatures As BooleanFeatures
Example
Private Sub Form_Load()
    Dim objApp As SolidEdgeFrameWork.Application
    Dim objDoc As SolidEdgePart.PartDocument
    Dim objModel As SolidEdgePart.Model
    Dim objBoolFeatures As SolidEdgePart.BooleanFeatures
    ' Local variables to be declared here
    Const TESTFILE = "T:\vbtests\testcases\cube.par"
    ' 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.PartDocument")
        objApp.Visible = True
    Else
        Set objDoc = objApp.ActiveDocument
    End If
    On Error GoTo 0
    ' Close the part document
    Call objDoc.Close
    ' Open a Testcase
    Set objDoc = objApp.Documents.Open(Filename:=TESTFILE)
    ' Get the model object in the test case
    Set objModel = objDoc.Models(1)
    'Get the BooleanFeatures Object for the Model
    Set objBoolFeatures = objModel.BooleanFeatures
    ' Release objects
    Set objApp = Nothing
    Set objDoc = Nothing
    Set objModel = Nothing
    Set objBoolFeatures = Nothing
End Sub
See Also

Model Object  | Model Members