
BBjWindow::addStaticText
Description
Adds a static text control to the BBjWindow.
Syntax
Return Value |
Method |
addStaticText(int ID, int x, int y, int width, int height, string title) |
|
addStaticText(int ID, int x, int y, int width, int height, string title, string flags) |
Parameters
Variable |
Description |
|
ID |
Control ID number. It must be an integer between 1 and 32767 and be unique within a given top-level window. |
|
x |
Horizontal position of the upper-left corner of the control in current units. |
|
y |
Vertical position of the upper-left corner of the control in current units. |
|
width |
Width of the control in current units. |
|
height |
Height of the control in current units. |
|
title |
Title of the control. Including the '&' before a character in the title causes it to be an accelerator. |
|
flags |
Control flags, as follows: |
|
|
Flag $0001$ $0010$ $0800$ $1000$ $2000$ $4000$ $8000$ $10000$ |
Description Sets the control to be initially disabled. Sets the control to be initially invisible. Draws a recessed client edge around the control. Draws a raised edge around the control. Left justifies static text. Centers static text. Right justifies static text. Prevents static text control text from wrapping. |
Return Value
Returns the created BBjStaticText object.
Remarks
By default, only the initial value of a static text control determines the hotkey, as described under "Hot Keys." When the UPDATE_TEXT_HOTKEYS !OPTIONS setting is set to TRUE, the hotkey is updated whenever the text is changed.
Example
REM Add a static text control to a window |
See Also
'TEXT' Mnemonic - Create a Static Text Control
See the BBj Object Diagram for an illustration of the relationship between BBj Objects.