Interface IDialogParametrization
-
- All Superinterfaces:
IParameterization
- All Known Subinterfaces:
INavigatorTreeDialogParameterization
- All Known Implementing Classes:
DialogParameterization,NavigatorTreeDialogParameterization
public interface IDialogParametrization extends IParameterization
IParameterizationfor dialog component.
-
-
Field Summary
-
Fields inherited from interface com._1c.g5.aef2.components.IParameterization
VOID
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description intgetHeight()Returns the height of dialog.StringgetTitle()Returns the title of dialog.intgetWidth()Returns the width of dialog.default booleanisAsyncDialog()Gets dialog creation async flagbooleanisEditable()Returns the editable flag.booleanisResizable()Returns the resizable flag.
-
-
-
Method Detail
-
getTitle
String getTitle()
Returns the title of dialog.- Returns:
- the title of dialog.
-
getHeight
int getHeight()
Returns the height of dialog.- Returns:
- the height of dialog.
-
getWidth
int getWidth()
Returns the width of dialog.- Returns:
- the width of dialog.
-
isResizable
boolean isResizable()
Returns the resizable flag.- Returns:
- the resizable flag.
-
isEditable
boolean isEditable()
Returns the editable flag.- Returns:
- the editable flag.
-
isAsyncDialog
default boolean isAsyncDialog()
Gets dialog creation async flag- Returns:
trueif dialog should be created in async mode,falseotherwise
-
-