BBjWindow::addListEdit
Description
Creates a list edit control in the BBjWindow.
Syntax
Return Value |
Method |
---|---|
addListEdit(int ID, number x, number y, number w, number h, string initialContents) |
|
addListEdit(int ID, number x, number y, number w, number h, string initialContents, string flags) |
|
addListEdit(int ID, string initialContents) | |
addListEdit(int ID, string initialContents, string flags) | |
addListEdit(string initialContents) | |
addListEdit(string initialContents, 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. |
||||||||||||||||||
initialContents |
Line feed separated strings containing the initial contents of the list. |
||||||||||||||||||
flags |
Control flags, as follows:
|
Return Value
Returns the created BBjListEdit object.
Remarks
The list of choices available may be modified only under program control. The values in the list may be accessed using a zero-based list index integer. If the user clicks on an item in the list, the item is copied into the edit area.
If the ID parameter is not specified, a control ID is assigned dynamically using getAvailableControlID().
If the x, y, width, and height parameters are not specified, they're all initialized to 0. This is typically for use with DWC windows that dynamically arrange their contents (window creation flag $00100000$).
Example
|
See Also
See the BBj Object Diagram for an illustration of the relationship between BBj Objects.