Package sk.ipesoft.d2000.go
Interface IEditTextComponent
-
- All Superinterfaces:
IBaseComponent,IEditTextSource
- All Known Implementing Classes:
GOEField
public interface IEditTextComponent extends IEditTextSource
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidaddTextChangedListener(IEditTextChangedListener listener)Corresponds to ESL event OnTextChangevoidaddTextValidateListener(IEditTextValidateListener listener)Corresponds to ESL event OnTextValidateintgetCaretCol()Corresponds to ESL function %HI_GetColEFintgetCaretRow()Corresponds to ESL function %HI_GetRowEFintgetLengthLimit()Corresponds to ESL function %HI_GetTextLimitintgetSelectionEnd()Corresponds to ESL function %HI_GetESelEFintgetSelectionStart()Corresponds to ESL function %HI_GetBSelEFvoidgoToLine(int lineNr)Corresponds to ESL function %HI_GoToLinevoidinsertText(java.lang.String text)Corresponds to ESL function %HI_InsertTextEFvoidsetLengthLimit(int limit)Corresponds to ESL function %HI_SetTextLimitvoidsetSelection(int start, int end)Corresponds to ESL function %HI_SetSelEF-
Methods inherited from interface sk.ipesoft.d2000.go.IBaseComponent
getUserData, setUserData
-
-
-
-
Method Detail
-
goToLine
void goToLine(int lineNr)
Corresponds to ESL function %HI_GoToLine
-
getSelectionStart
int getSelectionStart()
Corresponds to ESL function %HI_GetBSelEF
-
getSelectionEnd
int getSelectionEnd()
Corresponds to ESL function %HI_GetESelEF
-
insertText
void insertText(java.lang.String text)
Corresponds to ESL function %HI_InsertTextEF
-
getLengthLimit
int getLengthLimit()
Corresponds to ESL function %HI_GetTextLimit
-
setLengthLimit
void setLengthLimit(int limit)
Corresponds to ESL function %HI_SetTextLimit
-
setSelection
void setSelection(int start, int end)Corresponds to ESL function %HI_SetSelEF
-
getCaretRow
int getCaretRow()
Corresponds to ESL function %HI_GetRowEF
-
getCaretCol
int getCaretCol()
Corresponds to ESL function %HI_GetColEF
-
addTextChangedListener
void addTextChangedListener(IEditTextChangedListener listener)
Corresponds to ESL event OnTextChange- Specified by:
addTextChangedListenerin interfaceIEditTextSource
-
addTextValidateListener
void addTextValidateListener(IEditTextValidateListener listener)
Corresponds to ESL event OnTextValidate- Specified by:
addTextValidateListenerin interfaceIEditTextSource
-
-