QPR Knowledge Base 2017.1

SetUIMode

SetUIMode

Previous topic Next topic No directory for this topic  

SetUIMode

Previous topic Next topic Topic directory requires JavaScript Mail us feedback on this topic!  

Revision history:

Introduced in QPR 7.2.1

 

Hide/show QPR Metrics client's user interface. If UI is hidden, then all confirmation messages are defaulted to OK, which means, for instance, that objects or even a whole model can be deleted without any confirmations. If UI is hidden, then messages that require user to select some options return an error and the operation fails. UI is set to normal automatically after the script's execution ends.

 

Synopsis:

 

SCApplication.SetUIMode(Mode)

 

Parameters:

 

Mode: Integer, either 0 (UI_SILENT) or 1 (UI_NORMAL)

 

Required Rights:

 

None.

 

Return Values:

 

None.

 

Example Procedure:

 

Sub SetSilentMode()

 Dim iResult

 iResult = SCApplication.SetUIMode(0)

 If (iResult <> 0) Then

   MsgBox "Could not set silent UI mode: " + SCApplication.GetErrorMessage(iResult)

 End If

End Sub