Flex RichTextEditor控件

2018-01-01 19:13 更新

介紹

RichTextEditor控件提供用戶輸入和格式化文本的選項(xiàng)。 用戶可以更改字體系列,顏色,大小和樣式,以及其他屬性,如文本對(duì)齊,項(xiàng)目符號(hào)和URL鏈接。 控制由帶有兩個(gè)控制的Panel控制組成

  • 文本區(qū)域控件,用戶可以在其中輸入文本。

  • 具有格式控件的容器,允許用戶指定文本特征。 格式控制影響正在鍵入的文本或選定的文本。

類(lèi)聲明

以下是 mx.controls.RichTextEditor 類(lèi)的聲明:

public class RichTextEditor  
   extends Panel

公共屬性

S.N.屬性和描述
1

alignToolTip : String = "Align"

當(dāng)用戶懸停在文本對(duì)齊按鈕上方時(shí)顯示的工具提示。

2

boldToolTip:String =“Bold"

當(dāng)用戶懸停在文本粗體按鈕上方時(shí)顯示的工具提示。

3

bulletToolTip:String =“Bullet"

當(dāng)用戶懸停在項(xiàng)目符號(hào)列表按鈕上時(shí)顯示的工具提示。

4

colorPickerToolTip:String =“Color"

用戶懸停在ColorPicker控件上方時(shí)顯示的工具提示。

5

defaultLinkProtocol:String

在鏈接文本開(kāi)頭使用的默認(rèn)協(xié)議字符串。

6

fontFamilyToolTip : String = "Font Family"

當(dāng)用戶將鼠標(biāo)懸停在字體下拉列表上時(shí)顯示的工具提示。

7

fontSizeToolTip : String = "Font Size"

當(dāng)用戶將鼠標(biāo)懸停在字體大小下拉列表上時(shí)顯示的工具提示。

8

htmlText:String

包含在RichTextEditor控件的TextArea子控件中顯示的HTML標(biāo)記的文本。

9

italicToolTip : String = "Italic"

當(dāng)用戶將鼠標(biāo)懸停在文本斜體按鈕上時(shí)顯示的工具提示。

10

linkToolTip : String = "Link"

當(dāng)用戶懸停在鏈接文本輸入字段上時(shí)顯示的工具提示。

11

selection:mx.controls.textClasses:TextRange

[只讀]包含TextArea子控件中所選文本的TextRange對(duì)象。

12

showControlBar:Boolean

指定是否顯示包含文本格式控件的控件欄。

13

showToolTips:Boolean

指定是否顯示文本格式控件的工具提示。

14

text:String

在RichTextEditor控件的TextArea子控件中顯示的無(wú)標(biāo)記的純文本。

15

underlineToolTip : String = "Underline"

當(dāng)用戶懸停在文本下劃線按鈕上方時(shí)顯示的工具提示。

公共方法

S.N.方法和描述
1

RichTextEditor()

構(gòu)造函數(shù)。

事件

S.N.事件和描述
1

更改

當(dāng)用戶更改TextArea控件中文本的內(nèi)容或格式時(shí)分派。

繼承的方法

此類(lèi)繼承以下類(lèi)中的方法:

  • mx.containers.Panel

  • mx.core.Container

  • mx.core.UIComponent

  • mx.core.FlexSprite

  • flash.display.Sprite

  • flash.display.DisplayObjectContainer

  • flash.display.InteractiveObject

  • flash.display.DisplayObject

  • flash.events.EventDispatcher

  • Object

Flex RichTextEditor控件示例

讓我們按照以下步驟通過(guò)創(chuàng)建測(cè)試應(yīng)用程序來(lái)檢查Flex應(yīng)用程序中RichTextEditor控件的使用:

步驟描述
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"/>	
   <fx:Script>
      <![CDATA[
         private var richTextString:String = "You can enter text into the"
            +" <b>RichTextEditor control</b>.Click <b>"
            +"<font color='#BB50AA'>buttons</font></b> to display"
            +" entered text as <i>plain text</i>, "
            +"or as <i>HTML-formatted</i> text.";			
      ]]>
   </fx:Script>  
   <s:BorderContainer width="630" height="480" id="mainContainer" 
      styleName="container">
      <s:VGroup width="100%" height="100%" gap="50" 
         horizontalAlign="center" verticalAlign="middle">
         <s:Label id="lblHeader" text="Complex Controls Demonstration" 
            fontSize="40" color="0x777777" styleName="heading"/>
         <s:Panel id="richTextEditorPanel" title="Using RichTextEditor"
            width="500" height="300">
            <s:layout>
               <s:VerticalLayout  gap="10" verticalAlign="middle"
                  horizontalAlign="center"/>	
            </s:layout>
            <mx:RichTextEditor id="richTextEditor" title="RichTextEditor" 
               width="90%" height="150"
               borderAlpha="0.15" 
               creationComplete="richTextEditor.htmlText=richTextString;"  />
            <s:TextArea id="richText" width="90%" height="50" />
            <s:HGroup>
               <s:Button label="Show Plain Text" 
                  click="richText.text=richTextEditor.text;"/>
               <s:Button label="Show HTML Markup" 
                  click="richText.text=richTextEditor.htmlText;"/>
            </s:HGroup>
         </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é)果:[在線試用]

Flex RichTextEditor Control
以上內(nèi)容是否對(duì)您有幫助:
在線筆記
App下載
App下載

掃描二維碼

下載編程獅App

公眾號(hào)
微信公眾號(hào)

編程獅公眾號(hào)