Object
└EventDispatcher
└DisplayObject
└InteractiveObject
└TextField
text | String |
表示される文字列 | |
caretIndex | int[r/o] |
キャレット位置 | |
selectionBeginIndex | int[r/o] |
選択開始文字位置 | |
selectionEndIndex | int[r/o] |
選択終了文字位置 | |
length | int[r/o] |
文字数 | |
numLines | int[r/o] |
表示行数 | |
textHeight | Number[r/o] |
テキストのピクセル高 | |
textWidth | Number[r/o] |
テキストのピクセル幅 |
textColor | uint |
文字色(デフォルト:0x000000) | |
background | Boolean |
背景を持つか(デフォルト:false) | |
backgroundColor | uint |
背景色(デフォルト:0xFFFFFF) | |
border | Boolean |
枠を持つか(デフォルト:false) | |
borderColor | uint |
枠色(デフォルト:0x000000) | |
embedFonts | Boolean |
埋め込みフォントを使うか(デフォルト:false) | |
defaultTextFormat | TextFormat |
TextFormat(デフォルト:左記リンク先参照) |
htmlText | String |
表示されるHTML | |
condenseWhite | Boolean |
改行・空白文字を含めるか(デフォルト:false) | |
styleSheet | StyleSheet |
StyleSheet |
type | String |
TextFieldType(デフォルト:"dynamic") | |
autoSize | String |
TextFieldAutoSize (デフォルト:"none") | |
multiline | Boolean |
複数行表示か(デフォルト:false) | |
wordWrap | Boolean |
折り返すか(デフォルト:false) |
selectable | Boolean |
選択可能か(デフォルト:true) | |
alwaysShowSelection | Boolean |
常に選択文字範囲を表示するか(デフォルト:false) | |
useRichTextClipboard | Boolean |
文字のスタイルもコピーするか(デフォルト:false) |
displayAsPassword | Boolean |
パスワードテキストフィールドか(デフォルト:false) | |
maxChars | int |
入力可能文字数(デフォルト:0) | |
restrict | String |
入力を許可する文字(デフォルト:null) |
bottomScrollV | int[r/o] |
現在の表示範囲で最終行 | |
maxScrollH | int[r/o] |
最大水平スクロール位置 | |
maxScrollV | int[r/o] |
最大垂直スクロール位置 | |
scrollH | int |
現在の水平スクロール位置 | |
scrollV | int |
現在の垂直スクロール位置 | |
mouseWheelEnabled | Boolean |
マウスホイール対応か(デフォルト:true) |
antiAliasType | String |
AntiAliasType (デフォルト:"normal") | |
gridFitType | String |
GridFitType(デフォルト:"pixel") | |
sharpness | Number |
シャープネス -400〜400(デフォルト:0) | |
thickness | Number |
エッジの太さ -200〜200(デフォルト:0) |
appendText(newText:String) | なし |
末尾に文字列を追加する |
replaceText(beginIndex:int, endIndex:int, newText:String) | なし |
指定範囲を指定文字列に入れ替える | |
getTextFormat(beginIndex:int = -1, endIndex:int = -1) | TextFormat |
指定範囲のTextFormatを返す | |
setTextFormat(format:TextFormat, beginIndex:int = -1, endIndex:int = -1) | なし |
指定範囲にTextFormat設定する |
replaceSelectedText(value:String) | なし |
選択範囲を指定文字列に入れ替える | |
setSelection(beginIndex:int, endIndex:int) | なし |
指定範囲を選択 |
getCharBoundaries(charIndex:int) | Rectangle |
指定文字の矩形範囲を返す | |
getCharIndexAtPoint(x:Number, y:Number) | int |
指定座標にある文字の位置を返す |
getLineIndexAtPoint(x:Number, y:Number) | int |
指定座標にある文字の行頭からの位置で返す | |
getLineIndexOfChar (charIndex:int) | int |
指定位置にある文字の行頭からの位置で返す | |
getLineLength(lineIndex:int) | int |
指定行の文字数を返す | |
getLineMetrics(lineIndex:int) | TextLineMetrics |
指定行のメトリック情報を返す | |
getLineOffset(lineIndex:int) | int |
指定行の行頭の位置を返す | |
getLineText(lineIndex:int) | String |
指定行を文字列で返す |
getFirstCharInParagraph (charIndex:int) | なし |
指定位置を含む段落頭の位置を返す | |
getParagraphLength(charIndex:int) | int |
指定位置を含む段落の長さを返す |
getImageReference(id:String) | DisplayObject |
HTML内のimgタグの画像の参照を返す | |
replaceSelectedText(String) | なし |
inputDiscription |
change | Event.CHANGE |
文字が変更された | |
link | TextEvent.LINK |
リンクがクリックされた | |
scroll | Event.SCROLL |
スクロールした | |
textInput | TextEvent.TEXT_INPUT |
文字が入力された(変更前) |
//