BBjEditBox
Description
The BBjEditBox object provides methods for manipulating a GUI edit box control.
Implemented Interfaces
DragSource, DropTarget, Editable, Focusable, RecordSetBindable,SimpleRecordSetBindable,TabTraversable,TextAlignable,TextControl,Validateable
In BBj 12.0 and higher, removed MouseWheelEnabled
Creation
A BBjEditBox object is created through the following BBjWindow methods:
BBjAPI > BBjSysGui > BBjWindow > BBjEditBox
Return Value |
Method |
---|---|
BBjEditBox |
addEditBox(int ID, number x, number y, number width, number height, string title) |
BBjEditBox |
addEditBox(int ID, number x, number y, number width, number height, string title, string flags) |
BBjEditBox |
addEditBox(int ID, number x, number y, number width, number height, string title, string flags, string type) |
BBjEditBox |
addEditBox(int ID, String title) |
BBjEditBox |
addEditBox(int ID, String title, String flags) |
BBjEditBox |
addEditBox(int ID, String title, String flags, string type) |
BBjEditBox |
addEditBox(String title) |
BBjEditBox |
addEditBox(String title, String flags) |
BBjEditBox |
addEditBox(String title, String flags, string type) |
Methods of BBjEditBox
Return Value |
Method |
string |
|
int |
|
boolean |
|
string |
|
boolean |
|
boolean |
|
void |
select(int offset1, int offset2) |
void |
setEditable(boolean edit) |
void |
setMaxLength(int length) |
void |
setPassHomeDelete(boolean pass) |
void |
setPasswordVisible(boolean visible) |
Methods of BBjEditBox implemented for DragSource
Return Value | Method |
---|---|
int | getDragActions() |
string | getDragType() |
void | setDragActions(int actions) |
void | setDragType(string type) |
Methods of BBjEditBox implemented for DropTarget
Return Value | Method |
---|---|
int | getDropActions() |
void | setDropActions(int actions) |
BBjVector | getDropTypes() |
void | setDropTypes(BBjVector types) |
Methods of BBjEditBox implemented for Editable
Return Value | Method |
---|---|
boolean | isEditable() |
void | setEditable(boolean edit) |
Methods of BBjEditBox implemented for Focusable
Return Value | Method |
---|---|
boolean | isFocusable() |
void | setFocusable(boolean focus) |
Methods of BBjEditBox implemented for RecordSetBindable
Return Value | Method |
---|---|
void | bindRecordSet(BBjRecordSet recordset!, string fieldname) |
string | getBoundFieldName() |
Methods of BBjEditBox implemented for SimpleRecordSetBindable
Return Value | Method |
---|---|
BBjRecordSet | getBoundRecordSet() |
void | unbindRecordSet() |
Methods of BBjEditBox implemented for TabTraversable
Return Value | Method |
---|---|
boolean | isTabTraversable() |
void | setTabTraversable(boolean trav) |
Methods of of BBjEditBox implemented TextControl
Methods of BBjEditBox implemented for TextAlignable
Return Value | Method |
---|---|
int | getAlignment() |
void | setAlignment(int align) |
Methods of BBjEditBox implemented for Validateable
Return Value | Method |
---|---|
void | accept(boolean valid) |
string | getValidationText() |
Methods of BBjEditBox inherited from BBjControl
Events
Callback Code |
Object-oriented Event |
Read Record Event |
Code |
ON_CONTROL_VALIDATION |
v |
||
ON_DROP_TARGET_DROP |
D |
||
ON_EDIT_KEYPRESS |
N (Notify code 1) |
||
ON_EDIT_MODIFY |
e |
||
ON_GAINED_FOCUS |
f |
||
ON_LOST_FOCUS |
f |
||
ON_MOUSE_ENTER |
E |
||
ON_MOUSE_EXIT |
E |
||
ON_POPUP_REQUEST |
r |
||
ON_RIGHT_MOUSE_DOWN |
R |
CSS
The visual appearance of BUI controls is defined using CSS (cascading style sheets) rules. Easily change the default colors, border, and other settings by customizing these rules, all without changing any application code. See CSS API for a high-level overview of BUI CSS.
The BBjEditBox is implemented as either an <input type="text"> element or an <input type="password"> element, depending on whether the password style is specified on creation. It defines the following style names:
.BBjEditBox (primary style name)
.BBjEditBox.bbj-disabled (edit box is disabled)
.BBjEditBox.bbj-focused (edit box is focused)
.BBjEditBox.bbj-readonly (edit box is readonly)
.BBjEditBox.bbj-password (password-style edit box)
Remarks
None.
Constants inherited from BBjControl
Example
|
See Also
EDIT Mnemonic - Create An Edit Control
CALLBACK Verb - Register BBj Subroutine
DWC Component: dwc-field
See the BBj Object Diagram for an illustration of the relationship between BBj Objects.