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
TheIParameterizationfor action bar component.
-
-
Field Summary
Fields Modifier and Type Field Description static IDtActionBarParameterizationMULTI_LINE_LAZYThe action bar parameterization that corresponds to lazy (on focus lost or traverse return) multi line field.static IDtActionBarParameterizationMULTI_LINE_LIVEThe action bar parameterization that corresponds to live (on modify) multi line field.static IDtActionBarParameterizationMULTI_LINE_READONLYThe action bar parameterization for multi line field that is read only.static IDtActionBarParameterizationSINGLE_LINE_LAZYThe action bar parameterization that corresponds to lazy (on focus lost or traverse return) single line field.static IDtActionBarParameterizationSINGLE_LINE_LIVEThe action bar parameterization that corresponds to live (on modify) single line field.static IDtActionBarParameterizationSINGLE_LINE_READONLYThe 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 StringgetHintText()Returns the hint text of the text.intgetLinesCount()Returns the lines count.intgetTextLimit()Returns the text limit.ValueChangeApplygetValueChangeApply()Returns apply control value change variant:ValueChangeApply.ON_MODIFYvalue will change on every modification,ValueChangeApply.ON_FOCUS_LOSTonly on focus lost or 'Return' key is pressed.booleanisPasswordMode()Returns whether the text is in password mode.booleanisReadOnly()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:
trueif 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 returnnullif none hint is set.- Returns:
- the hint text of the text or
nullif none hint is set
-
getValueChangeApply
ValueChangeApply getValueChangeApply()
Returns apply control value change variant:ValueChangeApply.ON_MODIFYvalue will change on every modification,ValueChangeApply.ON_FOCUS_LOSTonly on focus lost or 'Return' key is pressed.
- Returns:
- the apply value change variant, cannot be
null
-
-