API Reference 0.3.24dart_web_toolkit_eventHasWordWrap

HasWordWrap abstract class

A widget that implements this interface has a 'word-wrap' property that can be manipulated using these methods.

abstract class HasWordWrap {

 /**
  * Gets whether word-wrapping is enabled.
  *
  * @return <code>true</code> if word-wrapping is enabled.
  */
 bool get wordWrap;

 /**
  * Sets whether word-wrapping is enabled.
  *
  * @param wrap <code>true</code> to enable word-wrapping.
  */
 void set wordWrap(bool wrap);
}

Subclasses

Anchor, CheckBox, LabelBase<T>, Tab

Properties

abstract bool get wordWrap #

Gets whether word-wrapping is enabled.

@return <code>true</code> if word-wrapping is enabled.

abstract void set wordWrap(bool wrap) #

Sets whether word-wrapping is enabled.

@param wrap <code>true</code> to enable word-wrapping.