HeaderPanelScheduledCommand class
class HeaderPanelScheduledCommand implements ScheduledCommand {
HeaderPanel _panel;
HeaderPanelScheduledCommand(this._panel);
/**
* Causes the Command to perform its encapsulated behavior.
*/
void execute() {
_panel._layoutScheduled = false;
_panel._forceLayout();
}
}
Implements
Constructors
new HeaderPanelScheduledCommand(HeaderPanel _panel) #
Methods
void execute() #
Causes the Command to perform its encapsulated behavior.
void execute() {
_panel._layoutScheduled = false;
_panel._forceLayout();
}