TextArea Basic
TextArea는 여러 줄로 된 문자열을 입력 받기 위해 사용하는 Component입니다.
DataSet 바인딩
TextArea는 Bind를 사용해 Dataset의 1개의 값과 연동 할 수 있습니다.
WordWrap 설정
지정된 출력 영역보다 문자열의 길이가 더 길 때 다음 라인으로 줄 넘김을 할지를 지정하는 속성입니다.
Script를 이용한 Value 설정
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
TextArea속성 중 readonly를 true로 설정하여 읽기전용 상태로 사용이 가능합니다.
- 소스 위치
Sample\TextArea\np_TextArea_Basic.xfdl