Difference between revisions of "SetClientPos"

From SCAR Divi Manual
Jump to: navigation, search
(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...")
 
(No difference)

Latest revision as of 13:25, 7 August 2012

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.