Porovnávané verzie

Kľúč

  • Tento riadok sa pridal
  • Riadok je odstránený.
  • Formátovanie sa zmenilo.

%IsConnectedBySAS function


Function

The function returns TRUE if the process, in the context of which it is called, is connected via the Security Access Proxy Server - D2000 SAS.

Otherwise, it returns FALSE.

The function can be used, for example, to limit the functionality of pictures when they are opened from a less trusted external environment (e.g. disabling control, equivalent to the SAS_DisableCTRLDlg setting for disabling control windows).

Declaration


Blok kódu
languageesl
themeConfluence
BOOL %IsConnectedBySAS()
Parameters

-

Example


Blok kódu
languageesl
themeRDark
BEGIN
 IF %IsConnectedBySAS() THEN
   MESSAGE "Control is not permitted."
 ENDIF
END