// Code run from TSE?
...
IF InTSEMode() = True THEN
// Procedure run from TSE
...
ELSE
// Standard case
// Process to perform
...
END
// Code run from TSE: disabling the unsupported effects
...
IF InTSEMode() = True THEN
WinDisableEffect(effectAnimation + effectTranslucentBorder + ...
effectDDW + effectBlur)
END
Syntax
<Result>: Boolean
- True if the code is run from an application run on a computer in TSE mode or via a remote desktop,
- False otherwise.
Versions 25 and later
New in version 25
Remarks
Availability of the function
InTSEMode is available for all the products to allow for a multi-product code. Functions or procedures that use InTSEMode can be shared between several products without generating any compilation error.
Business / UI classification : Neutral code