Interface IDtActionBarParameterization
-
- All Superinterfaces:
IParameterization
- All Known Subinterfaces:
IChartReferenceParameterization
,IColorComponentParameterization
,IDirectorySelectionParameterization
,IDtActionBarWithSelectionParameterization
,IExtendedTypeDescriptionParameterization
,IFileSelectionParameterization
,IFontComponentParameterization
,INavigatorTreeDialogActionBarParameterization
,ISelectionListDialogParameterization
,ISelectionParameterization
,ISelectionTreeDialogParameterization
- All Known Implementing Classes:
ChartReferenceParameterization
,ColorComponentParameterization
,DirectorySelectionParameterization
,DtActionBarParameterization
,DtActionBarWithSelectionParameterization
,ExtendedConfigurationObjectParameteriation
,ExtendedTypeDescriptionParameterization
,FileSelectionParameterization
,FontComponentParameterization
,NavigatorTreeDialogActionBarParameterization
,SelectionListDialogParameterization
,SelectionParameterization
,SelectionTreeDialogParameterization
public interface IDtActionBarParameterization extends IParameterization
TheIParameterization
for action bar component.
-
-
Field Summary
Fields Modifier and Type Field Description static IDtActionBarParameterization
MULTI_LINE_LAZY
The action bar parameterization that corresponds to lazy (on focus lost or traverse return) multi line field.static IDtActionBarParameterization
MULTI_LINE_LIVE
The action bar parameterization that corresponds to live (on modify) multi line field.static IDtActionBarParameterization
MULTI_LINE_READONLY
The action bar parameterization for multi line field that is read only.static IDtActionBarParameterization
SINGLE_LINE_LAZY
The action bar parameterization that corresponds to lazy (on focus lost or traverse return) single line field.static IDtActionBarParameterization
SINGLE_LINE_LIVE
The action bar parameterization that corresponds to live (on modify) single line field.static IDtActionBarParameterization
SINGLE_LINE_READONLY
The action bar parameterization that corresponds to read only single line field.-
Fields inherited from interface com._1c.g5.aef2.components.IParameterization
VOID
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description String
getHintText()
Returns the hint text of the text.int
getLinesCount()
Returns the lines count.int
getTextLimit()
Returns the text limit.ValueChangeApply
getValueChangeApply()
Returns apply control value change variant:ValueChangeApply.ON_MODIFY
value will change on every modification,ValueChangeApply.ON_FOCUS_LOST
only on focus lost or 'Return' key is pressed.boolean
isPasswordMode()
Returns whether the text is in password mode.boolean
isReadOnly()
Returns the value indicating the action bar editor is readonly or not.
-
-
-
Field Detail
-
SINGLE_LINE_READONLY
static final IDtActionBarParameterization SINGLE_LINE_READONLY
The action bar parameterization that corresponds to read only single line field.
-
SINGLE_LINE_LIVE
static final IDtActionBarParameterization SINGLE_LINE_LIVE
The action bar parameterization that corresponds to live (on modify) single line field.
-
SINGLE_LINE_LAZY
static final IDtActionBarParameterization SINGLE_LINE_LAZY
The action bar parameterization that corresponds to lazy (on focus lost or traverse return) single line field.
-
MULTI_LINE_LIVE
static final IDtActionBarParameterization MULTI_LINE_LIVE
The action bar parameterization that corresponds to live (on modify) multi line field.
-
MULTI_LINE_LAZY
static final IDtActionBarParameterization MULTI_LINE_LAZY
The action bar parameterization that corresponds to lazy (on focus lost or traverse return) multi line field.
-
MULTI_LINE_READONLY
static final IDtActionBarParameterization MULTI_LINE_READONLY
The action bar parameterization for multi line field that is read only.
-
-
Method Detail
-
isReadOnly
boolean isReadOnly()
Returns the value indicating the action bar editor is readonly or not.- Returns:
true
if the action bar editor is readonly,false
- otherwise.
-
isPasswordMode
boolean isPasswordMode()
Returns whether the text is in password mode.- Returns:
- whether the text is in password mode
-
getLinesCount
int getLinesCount()
Returns the lines count.- Returns:
- the lines count.
-
getTextLimit
int getTextLimit()
Returns the text limit.- Returns:
- the text limit or '-1' for unlimited text.
-
getHintText
String getHintText()
Returns the hint text of the text. Can returnnull
if none hint is set.- Returns:
- the hint text of the text or
null
if none hint is set
-
getValueChangeApply
ValueChangeApply getValueChangeApply()
Returns apply control value change variant:ValueChangeApply.ON_MODIFY
value will change on every modification,ValueChangeApply.ON_FOCUS_LOST
only on focus lost or 'Return' key is pressed.
- Returns:
- the apply value change variant, cannot be
null
-
-