Cicode Programming Reference > Cicode Function Categories > Miscellaneous Functions Introduction > ProcessIsClient

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

Miscellaneous Functions