ProcessIsClient
Determines if the currently executing process contains a Client component.
Syntax
ProcessIsClient()
Return Value
TRUE (1) if the process contains a Client component, otherwise FALSE (0).
Related Functions
ProcessIsServer, ServerInfo, ServerInfoEx, ServiceGetList
Example
To execute local variable simulation code on the client only:
IF (ProcessIsClient()) THEN
SimulateLocalVariables();
END
See Also