Solid Edge Framework Type Library
GetTeamCenterMode Method
True: When the Team Center Mode is ON. False: When the Team Center Mode is OFF.
Description
Returns TRUE/FALSE depending on whether the TeamCenter Mode Set or not
Syntax
Visual Basic
Public Sub GetTeamCenterMode( _
   ByRef bIsTeamCenterMode As Boolean _
) 
Parameters
bIsTeamCenterMode
True: When the Team Center Mode is ON. False: When the Team Center Mode is OFF.
Example
Option Explicit

Sub Example()
    Dim objApplication As SolidEdgeFramework.Application
    Dim objTCE As SolidEdgeFramework.SolidEdgeTCE
    Dim bTeamCenterMode As Boolean

    Set objApplication = GetObject(, "SolidEdge.Application")
    Set objTCE = objApplication.SolidEdgeTCE

    Call objTCE.GetTeamCenterMode(bTeamCenterMode)

    If Not objApplication Is Nothing Then
        Call objApplication.Quit
    End If
    
    Set objTCE = Nothing
    Set objApplication = Nothing
End Sub
See Also

SolidEdgeTCE Object  | SolidEdgeTCE Members  | Solid Edge V19 - What's New