Solid Edge Framework Type Library
GetInsightXTMode Method

An output parameter which has two possible values:

Description
Returns TRUE/FALSE depending on whether the InsightXT Mode Set or not
Syntax
Visual Basic
Public Sub GetInsightXTMode( _
   ByRef bIsInsightXTMode As Boolean _
) 
Parameters
bIsInsightXTMode

An output parameter which has two possible values:

  • True: When the Team Center Mode is ON.
  • False: When the Team Center Mode is 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 bGetInsightXTMode As Boolean

    Call objSolidEdgeInsightXT.GetInsightXTMode(bGetInsightXTMode)
    MsgBox (bGetInsightXTMode)

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

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