LABEL: Difference between revisions

From Macros Wiki
Jump to navigationJump to search
ConnerO (talk | contribs)
No edit summary
ConnerO (talk | contribs)
No edit summary
Line 17: Line 17:
:height=25
:height=25
:LABEL xpos, ypos, width, height, A$
:LABEL xpos, ypos, width, height, A$
:For an example in a real macro see [[Create_Contour]]
:For an example macro see [[Create_Contour]]
[[Category:Dialog]]
[[Category:Dialog]]

Revision as of 21:09, 29 July 2010

Command

LABEL
LABEL
LABEL <left>, <top>, <width>, <height>, <label text>


Define the size and the position of a label and the text to be displayed inside.

Parameters

<left>
Start position measured from the left edge of the dialog.
<top>
Start position of measured from the top edge of the dialog.
<width>
Width of the control.
<height>
Height of the control.
<label text>
Text to be displayed.

Example

LABEL 100, 40, 30, 24, "label 1"

A$ = "My Label"
xpos=50
ypos=200
width=50
height=25
LABEL xpos, ypos, width, height, A$
For an example macro see Create_Contour