Packageorg.openzet.controls
Classpublic class ZetTextArea
InheritanceZetTextArea Inheritance mx.controls.TextArea

ZetTextArea extends TextArea to provide note like features.

MXML Syntaxexpanded Hide MXML Syntax

<zet:ZetTextArea>inherits superclass's all properties in addition to following properties.

  <zet:ZetTextArea
   Properties
   drawUnderLines="false|true"
   stepByStep="false|true"
   >
      ...
      child tags
      ...
  </zet:ZetTextArea>
  

View the examples.



Public Properties
 PropertyDefined by
  drawUnderLines : Boolean
Flag to specify whether to draw lines.
ZetTextArea
  stepByStep : Boolean
Flag to specify whether to show lines gradually.
ZetTextArea
Public Methods
 MethodDefined by
  
Constructor
ZetTextArea
Protected Methods
 MethodDefined by
  
ZetTextArea
Property detail
drawUnderLinesproperty
drawUnderLines:Boolean  [read-write]

Flag to specify whether to draw lines.

The default value is true.

Implementation
    public function get drawUnderLines():Boolean
    public function set drawUnderLines(value:Boolean):void
stepByStepproperty 
stepByStep:Boolean  [read-write]

Flag to specify whether to show lines gradually.

The default value is false.

Implementation
    public function get stepByStep():Boolean
    public function set stepByStep(value:Boolean):void
Constructor detail
ZetTextArea()constructor
public function ZetTextArea()

Constructor

Method detail
createChildren()method
protected override function createChildren():void

Examples
ZetTextAreaExample
<?xml version="1.0" encoding="utf-8"?>
<mx:Application xmlns:mx="http://www.adobe.com/2006/mxml"
    xmlns:zet="org.openzet.controls.*"
    layout="absolute">
        <zet:ZetTextArea width="100%" height="100%"  drawUnderLines="true" stepByStep="false"/>
</mx:Application>