TextArea Basic
TextArea is the component which is used to enter multiline String values.
TextArea_Basic_0
DataSet binding
By using the DataSet binding with TextArea, we can work with a single column of Dataset
Setting WordWrap
If the output String length is longer than the size of Text output Area, This property specifies whether to show in the next line or not.
Setting value using Script
this.TextArea_Basic_onload = function(obj:Form, e:nexacro.LoadEventInfo)
{
var objDate = new Date();
var str = "Set value by using Script.";
this.TextArea05.set_value(str);
}
ReadOnly
After setting TextArea's readonly property true, text area will be set to read only status.
TextArea_Basic_1
Source Location
Sample\TextArea\np_TextArea_Basic.xfdl