Difference between revisions of "TSCARClient.Activate"
From SCAR Divi Manual
(Created page with "==Class== TSCARClient ==Definition== <source lang="scar" lines="false"> function TSCARClient.Activate: Boolean; </source> ==Availability== SCAR Divi 3.35 > Current ==Descr...") |
|||
(One intermediate revision by the same user not shown) | |||
Line 1: | Line 1: | ||
− | |||
− | |||
− | |||
==Definition== | ==Definition== | ||
− | <source lang="scar" lines="false"> | + | Member of [[TSCARClient]].<source lang="scar" lines="false"> |
function TSCARClient.Activate: Boolean; | function TSCARClient.Activate: Boolean; | ||
</source> | </source> | ||
Line 24: | Line 21: | ||
end. | end. | ||
</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.