Interface IDialogParametrization
-
- All Superinterfaces:
IParameterization
- All Known Subinterfaces:
INavigatorTreeDialogParameterization
- All Known Implementing Classes:
DialogParameterization
,NavigatorTreeDialogParameterization
public interface IDialogParametrization extends IParameterization
IParameterization
for 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 int
getHeight()
Returns the height of dialog.String
getTitle()
Returns the title of dialog.int
getWidth()
Returns the width of dialog.default boolean
isAsyncDialog()
Gets dialog creation async flagboolean
isEditable()
Returns the editable flag.boolean
isResizable()
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:
true
if dialog should be created in async mode,false
otherwise
-
-