
BBjInputE
Creation Path
|
+--BBjSysGui
|
+--BBjWindow
|
+--BBjInputE
Description
The BBjInputE object provides methods for manipulating a GUI InputE control.
Implemented Interfaces
DragSource, DropTarget,Editable, Focusable, RecordSetBindable,SimpleRecordSetBindable,TabTraversable,TextAlignable,TextControl,Validateable
Creation
A BBjInputE object is created through the following BBjWindow methods:
Return Value |
Method |
BBjInputE |
addInputE(int ID, int x, int y, int w, int h) |
BBjInputE |
addInputE(int ID, int x, int y, int w, int h, string flags) |
BBjInputE |
addInputE(int ID, int x, int y, int w, int h, string flags, int len) |
BBjInputE |
addInputE(int ID, int x, int y, int w, int h, string flags, int len, string pad) |
BBjInputE |
addInputE(int ID, int x, int y, int w, int h, string flags, int len, string pad, string val) |
BBjInputE |
addInputE(int ID, int x, int y, int w, int h, string flags, int len, string pad, int initPos, string restore, string val) |
BBjInputE |
addInputE(int ID, int x, int y, int w, int h, string flags, string mask) |
BBjInputE |
addInputE(int ID, int x, int y, int w, int h, string flags, string mask, string pad) |
BBjInputE |
addInputE(int ID, int x, int y, int w, int h, string flags, string mask, string pad, string val) |
BBjInputE |
addInputE(int ID, int x, int y, int w, int h, string flags, string mask, string pad, int initPos, string restore, string val) |
Methods of BBjInputE
Return Value |
Method |
int |
|
int |
getError() |
string |
|
boolean |
|
boolean |
|
int |
|
string |
getMask() |
int |
|
string |
|
boolean |
|
boolean |
|
string |
|
boolean |
|
void |
restore() |
void |
|
void |
setCaretPosition(int pos) |
void |
setEditable(boolean editable) |
void |
setEditString(string edit) |
void |
setHighlight(boolean highlight) |
void |
setInsertMode(boolean insert) |
void |
setLength(int len) |
void |
setMargin(int marginWidth) |
void |
setMask(string mask) |
void |
setPadCharacter(string pad) |
void |
setPassEnter(boolean pass) |
void |
setPassTab(boolean pass) |
void |
setRestore(string restore) |
Methods of BBjInputE implemented for DragSource
Return Value |
Method |
int |
|
string |
|
void |
setDragActions(int actions) |
void |
setDragType(string type) |
Methods of BBjInputE implemented for DropTarget
Return Value |
Method |
int |
|
void |
setDropActions(int actions) |
void |
setDropTypes(BBjVector types) |
Methods of BBjInputE implemented for Editable
Return Value |
Method |
boolean |
|
void |
setEditable(boolean p_edit) |
Methods of BBjInputE implemented for Focusable
Return Value |
Method |
boolean |
|
void |
setFocusable(boolean p_focus) |
Methods of BBjInputE implemented for RecordSetBindable
Return Value |
Method |
void |
bindRecordSet(BBjRecordSet recordset, string fieldname) |
string |
Methods of BBjInputE implemented for SimpleRecordSetBindable
Return Value |
Method |
void |
Methods of BBjInputE implemented for TabTraversable
Return Value |
Method |
boolean |
|
void |
setTabTraversable(boolean trav) |
Methods of BBjInputE implemented for TextAlignable
Return Value |
Method |
int |
|
void |
setAlignment(int p_align) |
Methods of of BBjInputE implemented TextControl
Return Value |
Method |
---|---|
void |
addWord(string word) |
int |
|
string |
|
boolean |
|
int |
|
int |
|
string |
|
int |
|
string |
|
int |
|
string |
|
boolean |
getSpellCheckOption(int option) |
getSuggestions(string word) |
|
int |
|
void |
ignoreWord(string word) |
boolean |
isMisspelled(string word) |
boolean |
|
void |
removeWord(string word) |
void |
setBottomMargin(int margin) |
void |
setCustomDictionary(string filename) |
void |
setDisabledTextColor(BBjColor color!) |
void |
setDragEnabled(boolean enabled) |
void |
setHighlightOnFocus(int behavior) |
void |
setLeftMargin(int margin) |
void |
setLocale(string locale) |
void |
setMaxSuggestions(int count) |
void |
setPlaceholder(string placeholder) |
void |
setPlaceholderColor(BBjColor color!) |
void |
setRightMargin(int margin) |
void |
setSpellCheckColor(BBjColor color!) |
void |
setSpellChecked(boolean check) |
void |
setSpellCheckLanguage(string language) |
void |
setSpellCheckOption(int option, boolean value) |
void |
setTopMargin(int margin) |
Methods of BBjInputE implemented for Validateable
Return Value |
Method |
void |
accept(boolean valid) |
string |
Methods of BBjInputE inherited from BBjControl
Events
Callback Code |
Object-oriented Event |
Read Record Event |
Code |
ON_CONTROL_VALIDATION |
v |
||
ON_DROP_TARGET_DROP |
D |
||
ON_EDIT_MODIFY |
e |
||
ON_GAINED_FOCUS |
f |
||
ON_INPUT_KEYPRESS |
N (Notify Code 1) |
||
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 BBjInputE is an <input type="text"> element, with extensive JavaScript logic to manage the complex masking rules. It defines the following style names:
.BBjInputE
.BBjInputE.bbj-disabled
.BBjInputE.bbj-focused
.BBjInputE.bbj-readonly
Remarks
None.
Constants inherited from BBjControl
Example
REM Add a INPUTE
control to a window |
See Also
INPUTE Mnemonic - Create Graphical Edit (INPUTE) Control
CALLBACK Verb - Register BBj Subroutine
See the BBj Object Diagram for an illustration of the relationship between BBj Objects.