API Reference 0.3.24dart_web_toolkit_uiSplitterScheduledCommand

SplitterScheduledCommand class

class SplitterScheduledCommand extends ScheduledCommand {

 Splitter _splitter;

 SplitterScheduledCommand(this._splitter);

 /**
  * Invokes the command.
  */
 void execute() {
   _splitter._layoutCommand = null;
   _splitter._splitLayoutPanel.forceLayout();
 }
}

Extends

ScheduledCommand > SplitterScheduledCommand

Constructors

new SplitterScheduledCommand(Splitter _splitter) #

Creates a new Object instance.

Object instances have no meaningful state, and are only useful through their identity. An Object instance is equal to itself only.

docs inherited from Object
SplitterScheduledCommand(this._splitter);

Methods

void execute() #

Invokes the command.

void execute() {
 _splitter._layoutCommand = null;
 _splitter._splitLayoutPanel.forceLayout();
}