| Package | org.openzet.controls |
| Class | public class ZetTextArea |
| Inheritance | ZetTextArea mx.controls.TextArea |
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>
| Property | Defined by | ||
|---|---|---|---|
| drawUnderLines : Boolean
Flag to specify whether to draw lines.
| ZetTextArea | ||
| stepByStep : Boolean
Flag to specify whether to show lines gradually.
| ZetTextArea | ||
| Method | Defined by | ||
|---|---|---|---|
|
Constructor
| ZetTextArea | ||
| Method | Defined by | ||
|---|---|---|---|
|
createChildren():void
| ZetTextArea | ||
| drawUnderLines | property |
drawUnderLines:Boolean [read-write]Flag to specify whether to draw lines.
The default value is true.
public function get drawUnderLines():Boolean
public function set drawUnderLines(value:Boolean):void
| stepByStep | property |
stepByStep:Boolean [read-write]Flag to specify whether to show lines gradually.
The default value is false.
public function get stepByStep():Boolean
public function set stepByStep(value:Boolean):void
| ZetTextArea | () | constructor |
public function ZetTextArea()Constructor
| createChildren | () | method |
protected override function createChildren():void
<?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>