SetClientPos

From SCAR Divi Manual
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.