TSCARClient.Exists
From SCAR Divi Manual
Revision as of 18:09, 22 July 2012 by Freddy (talk | contribs) (Created page with "==Definition== Member of TSCARClient.<source lang="scar" lines="false"> function TSCARClient.Exists: Boolean; </source> ==Availability== SCAR Divi 3.35 > Current ==Descript...")
Definition
Member of TSCARClient.function TSCARClient.Exists: Boolean;
Availability
SCAR Divi 3.35 > Current
Description
Returns true if the client exists or has the ability to function, the actual effect may depend on the implementation of the client.
Implementations
- TSCARWindowClient: Returns true if the window (still) exists.
- TSCARBitmapClient: Returns true if a valid bitmap is assigned to the object.
- TSCARLibraryClient: The implementation depends on the library, refer to the library's documentation.
Example
begin WriteLn(GetClient.Exists); end.