BBjWindow::addCEdit
Description
Creates a special multi-line text editing control in the BBjWindow.
Syntax
Return Value | Method |
---|---|
addCEdit(int ID, number x, number y, number w, number h, string title) |
|
addCEdit(int ID, number x, number y, number w, number h, string title, string flags) |
|
BBjCEdit | addCEdit(int ID, string title) |
BBjCEdit | addCEdit(int ID, string title, string flags) |
BBjCEdit | addCEdit(string title) |
BBjCEdit | addCEdit(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. Note:If x, y, width, and height are all 0, the BBjCEdit control will be sized to fill the window (and resized as necessary when the window is resized). |
||||||||||||||||||||||||||||
title |
The initial text contents of the control. This is equivalent to setting the text with the BBjControl::setText method | ||||||||||||||||||||||||||||
flags |
Control flags, as follows:
|
Return Value
Returns the created BBjCEdit object.
Remarks
The BBjCEdit control holds one or more lines of text, called paragraphs, each of which may occupy one or more physical lines, depending on the "wrap" setting.
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 are 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.