TextArea控件是一個(gè)文本輸入控件,允許用戶輸入和編輯多行格式化的文本。
以下是 spark.components.TextArea 類的聲明:
public class TextArea extends SkinnableTextBase
S.N. | 屬性和描述 |
---|---|
1 | content:Object 此屬性適用于編譯時(shí)的MXML; 要在運(yùn)行時(shí)獲取或設(shè)置富文本內(nèi)容,請(qǐng)改用textFlow屬性。 |
2 | heightInLines:Number 控件的默認(rèn)高度,以行為單位。 |
3 | textFlow:flashx.textLayout.elements:TextFlow TextFlow表示此組件顯示的富文本。 |
4 | widthInChars:Number 控件的默認(rèn)寬度,以em為單位。 |
S.N. | 方法和描述 |
---|---|
1 | TextArea() 構(gòu)造函數(shù)。 |
2 | getFormatOfRange(requestedFormats:Vector。< String> = null,anchorPosition:int = -1,activePosition:int = -1):flashx.textLayout.formats:TextLayoutFormat 返回一個(gè)TextLayoutFormat對(duì)象,指定指定字符范圍的計(jì)算格式。 |
3 | scrollToRange(anchorPosition:int = 0,activePosition:int):void 滾動(dòng)以使文本范圍在容器中可見。 |
4 | setFormatOfRange(format:flashx.textLayout.formats:TextLayoutFormat,anchorPosition:int = -1,activePosition:int = -1):void 將指定的格式應(yīng)用于與給定格式對(duì)應(yīng)的指定范圍中的每個(gè)元素。 |
此類繼承以下類中的方法:
spark.components.supportClasses.SkinnableTextBase
spark.components.supportClasses.SkinnableComponent
mx.core.UIComponent
mx.core.FlexSprite
flash.display.Sprite
flash.display.DisplayObjectContainer
flash.display.InteractiveObject
flash.display.DisplayObject
flash.events.EventDispatcher
Object
讓我們按照以下步驟通過創(chuàng)建測(cè)試應(yīng)用程序來(lái)檢查Flex應(yīng)用程序中TextArea控件的用法:
步驟 | 描述 |
---|---|
1 | 在 Flex - 創(chuàng)建應(yīng)用程序章節(jié)中所述,在包 com.tutorialspoint.client 下創(chuàng)建名為 HelloWorld 的項(xiàng)目。 |
2 | 修改 HelloWorld.mxml ,如下所述。 保持文件的其余部分不變。 |
3 | 編譯并運(yùn)行應(yīng)用程序,以確保業(yè)務(wù)邏輯按照要求工作。 |
以下是修改后的mxml文件 src / com.tutorialspoint / HelloWorld.mxml 的內(nèi)容。
<?xml version="1.0" encoding="utf-8"?> <s:Application xmlns:fx="http://ns.adobe.com/mxml/2009" xmlns:s="library://ns.adobe.com/flex/spark" xmlns:mx="library://ns.adobe.com/flex/mx" width="100%" height="100%" minWidth="500" minHeight="500" > <fx:Style source="/com/tutorialspoint/client/Style.css"/> <s:BorderContainer width="550" height="400" id="mainContainer" styleName="container"> <s:VGroup width="100%" height="100%" gap="50" horizontalAlign="center" verticalAlign="middle"> <s:Label id="lblHeader" text="Form Controls Demonstration" fontSize="40" color="0x777777" styleName="heading"/> <s:Panel id="textAreaPanel" title="Using TextArea" width="420" height="200"> <s:layout> <s:VerticalLayout gap="10" verticalAlign="middle" horizontalAlign="center"/> </s:layout> <s:TextArea width="400" height="100"> <s:content> This is <s:span color="#FF0000">HTML text</s:span> in an <s:span fontWeight="bold">TextArea control</s:span>. <s:span textDecoration="underline">content</s:span> property of the <s:span color="#008800">TextArea control</s:span> can be used to include basic HTML markup in including <s:a href="http://m.hgci.cn" target="_blank">links</s:a>. </s:content> </s:TextArea> </s:Panel> </s:VGroup> </s:BorderContainer> </s:Application>
準(zhǔn)備好所有更改后,讓我們以正常模式編譯和運(yùn)行應(yīng)用程序,就像在 Flex - 創(chuàng)建應(yīng)用程序中一樣 章節(jié)。 如果一切順利,您的應(yīng)用程序,這將產(chǎn)生以下結(jié)果:[在線試用]
更多建議: