Solid Edge Part Type Library
Recompute Method
Specifies the feature to recompute.
Description
Recalculates the relationships among Features in the referenced Model object.
Syntax
Visual Basic
Public Sub Recompute( _
   Optional ByVal Feature As Variant _
) 
Parameters
Feature
Specifies the feature to recompute.
Example
Private Sub Form_Load()
    Dim objApp As SolidEdgeFramework.Application
    Dim objDoc As SolidEdgePart.PartDocument
    Dim objModel As SolidEdgePart.Model
    Const TESTFILE = "T:\vbtests\testcases\chead.par"
    ' 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.PartDocument")
        objApp.Visible = True
    Else
        Set objDoc = objApp.ActiveDocument
    End If
    ' 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)
    ' Recompute the model object
    objModel.Recompute
    ' USER DISPLAY
    ' Release objects
    Set objApp = Nothing
    Set objDoc = Nothing
    Set objModel = Nothing
End Sub
See Also

Model Object  | Model Members