Core Function GUICreateLabel
From Sputnik Wiki
(Difference between revisions)
(→Example) |
m (1 revision) |
(One intermediate revision by one user not shown) |
Latest revision as of 12:37, 14 June 2015
GUICreate( "Label", <gui object>, <Text>, <Left>, <Top>, <Width>, <Height> )
Contents |
Description
Create a Label
Parameters
gui object
The GUI object to place the Label on.
text
The text the button should display.
left
LEFT Position to create the object.
top
TOP Position to create the object.
width
Optional; The width of the object.
height
Optional; The height of the object.
Return Value
Success: Returns the new GUI object.
Failure: Returns 0 if error occurs.
Remarks
None.
Example
// Create the GUI Global $GUI = GUICreate("Window", "Hello", 550, 350); // Show the GUI GUILoad( $GUI ); // Create a Label Global $Lbl = GUICreate("Label", $GUI, "My Label", 8, 8); // Keep the GUI running as long as long as the window is open While ( GUIStatus( $GUI ) ) DoEvents( );