Solid Edge Framework Type Library
SetInsightXTMode Method

A Boolean flag which is used to specify whether to make the InsightXT Mode ON\OFF.

It has two possible values:

Description
Sets the InsightXT Mode
Syntax
Visual Basic
Public Sub SetInsightXTMode( _
   ByVal bMode As Boolean _
) 
Parameters
bMode

A Boolean flag which is used to specify whether to make the InsightXT Mode ON\OFF.

It has two possible values:

  • True: Make InsightXT mode ON.
  • False: Make InsightXT mode OFF.
Example
Private Sub Command1_Click()
    On Error Resume Next
    Dim objApplication As SolidEdgeFramework.Application
    Dim objSolidEdgeInsightXT  As SolidEdgeFramework.SolidEdgeInsightXT
    
    Set objApplication = GetObject(, "SolidEdge.Application")
    Set objSolidEdgeInsightXT = objApplication.SolidEdgeInsightXT

    Dim bMode As Boolean
    bMode = True
    
    Call objSolidEdgeInsightXT.SetInsightXTMode(bMode)

    Set objSolidEdgeInsightXT = Nothing
    Set objApplication = Nothing
End Sub
See Also

SolidEdgeInsightXT Object  | SolidEdgeInsightXT Members  | Solid Edge ST4 - What's New