| Package | jp.nium.text |
| Class | public class ExTextField |
| Inheritance | ExTextField flash.text.TextField |
| Implements | IIdGroup, ITextField, jp.nium.core.impls.IExDisplayObject |
| Subclasses | CastTextField |
// ExTextField インスタンスを作成する var txt:ExTextField = new ExTextField();
See also
| Property | Defined by | ||
|---|---|---|---|
| className : String [read-only]
インスタンスのクラス名を取得します。
Indicates the instance className of the IExDisplayObject.
| ExTextField | ||
| group : String
インスタンスのグループ名を取得または設定します。
Indicates the instance group of the IExDisplayObject.
| ExTextField | ||
| id : String
インスタンスの識別子を取得または設定します。
Indicates the instance id of the IExDisplayObject.
| ExTextField | ||
| Method | Defined by | ||
|---|---|---|---|
|
ExTextField(initObject:Object = null)
新しい ExTextField インスタンスを作成します。
Creates a new ExTextField object.
| ExTextField | ||
|
appendTextAtCaretIndex(newText:String):void
newText パラメータで指定されたストリングを、テキストフィールドのキャレット位置に付加します。
Add the string specified as newText parameter to the caret position of the TextField.
| ExTextField | ||
|
setProperties(parameters:Object):DisplayObject
インスタンスに対して、複数のプロパティを一括設定します。
Setup the several instance properties.
| ExTextField | ||
|
toString():String
指定されたオブジェクトのストリング表現を返します。
Returns the string representation of the specified object.
| ExTextField | ||
| className | property |
className:String [read-only]インスタンスのクラス名を取得します。 Indicates the instance className of the IExDisplayObject.
Implementation public function get className():String
| group | property |
group:String [read-write]インスタンスのグループ名を取得または設定します。 Indicates the instance group of the IExDisplayObject.
Implementation public function get group():String
public function set group(value:String):void
See also
| id | property |
id:String [read-write]インスタンスの識別子を取得または設定します。 Indicates the instance id of the IExDisplayObject.
Implementation public function get id():String
public function set id(value:String):void
See also
| ExTextField | () | constructor |
public function ExTextField(initObject:Object = null)新しい ExTextField インスタンスを作成します。 Creates a new ExTextField object.
ParametersinitObject:Object (default = null) — 設定したいプロパティを含んだオブジェクトです。
|
| appendTextAtCaretIndex | () | method |
public function appendTextAtCaretIndex(newText:String):voidnewText パラメータで指定されたストリングを、テキストフィールドのキャレット位置に付加します。 Add the string specified as newText parameter to the caret position of the TextField.
ParametersnewText:String — 既存のテキストに追加するストリングです。
The string to add to the existence text.
|
| setProperties | () | method |
public function setProperties(parameters:Object):DisplayObjectインスタンスに対して、複数のプロパティを一括設定します。 Setup the several instance properties.
Parametersparameters:Object — 設定したいプロパティを含んだオブジェクトです。
The object that contains the property to setup.
|
DisplayObject — 自身の参照です。
|
| toString | () | method |
public override function toString():String指定されたオブジェクトのストリング表現を返します。 Returns the string representation of the specified object.
ReturnsString — オブジェクトのストリング表現です。
A string representation of the object.
|