Package org.zkoss.zul.ext
Interface Framable
-
- All Known Implementing Classes:
FileuploadDlg,MessageboxDlg,Panel,Window
public interface FramableIndicates a component that can be built-in collapsible, closable, maximizable, and minimizable behavior, along with a variety of pre-built tool buttons that can be wired up to provide other customized behavior.- Since:
- 3.6.2
- Author:
- jumperchen
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.StringgetTitle()Returns the title.booleanisClosable()Returns whether to show a close button.booleanisCollapsible()Returns whether to show a toggle button.booleanisMaximizable()Returns whether to display the maximizing button.booleanisMaximized()Returns whether is maximized.booleanisMinimizable()Returns whether to display the minimizing button.
-
-
-
Method Detail
-
isClosable
boolean isClosable()
Returns whether to show a close button.
-
isMaximizable
boolean isMaximizable()
Returns whether to display the maximizing button.
-
isMinimizable
boolean isMinimizable()
Returns whether to display the minimizing button.
-
isCollapsible
boolean isCollapsible()
Returns whether to show a toggle button.
-
isMaximized
boolean isMaximized()
Returns whether is maximized.- Since:
- 3.6.3
-
getTitle
java.lang.String getTitle()
Returns the title.- Since:
- 3.6.3
-
-