Difference between revisions of "TSCARClient.Activate"
From SCAR Divi Manual
Line 1: | Line 1: | ||
==Definition== | ==Definition== | ||
− | + | Member of [[TSCARClient]].<source lang="scar" lines="false"> | |
− | <source lang="scar" lines="false"> | + | function TSCARClient.Activate: Boolean; |
− | function Activate: Boolean; | ||
</source> | </source> | ||
Latest revision as of 18:06, 22 July 2012
Definition
Member of TSCARClient.function TSCARClient.Activate: Boolean;
Availability
SCAR Divi 3.35 > Current
Description
Activates the client, the actual effect may depend on the implementation of the client. The function returns true when successful.
Implementations
- TSCARWindowClient: The method brings the window to the foreground.
- TSCARBitmapClient: The method has no implementation and throws an exception.
- TSCARLibraryClient: The implementation depends on the library, refer to the library's documentation.
Example
begin GetClient.Activate; end.