CONTROL SET LOC

<< Click to Display Table of Contents >>

Navigation:  ThinBASIC Modules > UI (User Interface) > CONTROLS > Control Commands >

CONTROL SET LOC

 

Description

 

Set the x, y position of the specified control inside a dialog.

 

Syntax

 

CONTROL SET LOC hwnd, ctrlID, x, y

 

Returns

 

None

 

Parameters

 

Name

Type

Optional

Meaning

hwnd

Number

No

Handle of the dialog containing the control

ctrlID

Number

No

Control identifier assigned to the control during CONTROL ADD ...

x

Number

No

The new top left X position of the control.

y

Number

No

The new top left Y position of the control.

 

Remarks

 

The x and y coordinates are relative to the upper left corner of the client area  of the parent dialog (0,0), and are specified in the same terms (pixels or dialog units) as the parent  dialog.

 

Restrictions

 

See also

 

Examples