SetClientPos

From SCAR Divi Manual
Revision as of 13:25, 7 August 2012 by Freddy (talk | contribs) (Created page with "==Definition== <source lang="scar" lines="false"> procedure SetClientPos(OnTop: Boolean); </source> ==Availability== SCAR Divi 3.00 > 3.34 ==Description== Makes the selected...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search

Definition

procedure SetClientPos(OnTop: Boolean);

Availability

SCAR Divi 3.00 > 3.34

Description

Makes the selected client a topmost window if OnTop is true, which means it can't be covered by most other windows afterwards.

Example

// Before running, select a window as client and hide it behind another window
begin
  Wait(5000);
  SetClientPos(True);
end.