API Reference 0.3.24dart_web_toolkit_uiResizeLayoutPanelResizeDelegate

ResizeLayoutPanelResizeDelegate class

Delegate event handler.

class ResizeLayoutPanelResizeDelegate extends ResizeDelegate {

 ResizeLayoutPanel _panel;

 ResizeLayoutPanelResizeDelegate(this._panel);


 /**
  * Called when the element is resized.
  */
 void onResize() {
   _panel.scheduleResize();
 }
}

Extends

ResizeDelegate > ResizeLayoutPanelResizeDelegate

Constructors

new ResizeLayoutPanelResizeDelegate(ResizeLayoutPanel _panel) #

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
ResizeLayoutPanelResizeDelegate(this._panel);

Methods

void onResize() #

Called when the element is resized.

void onResize() {
 _panel.scheduleResize();
}