| Pacchetto | mx.controls.textClasses |
| Classe | public class TextRange |
| Ereditarietà | TextRange Object |
| Versione linguaggio: | ActionScript 3.0 |
| Versione prodotto: | Flex 3 |
| Versioni runtime: | Flash Player 9, AIR 1.1 |
Elementi API correlati
mx.controls.RichTextEditor
mx.controls.Text
mx.controls.TextArea
mx.controls.TextInput
flash.text.TextFormatAlign
| Proprietà | Definito da | ||
|---|---|---|---|
| beginIndex : int
Zero-based index in the control's text field of the first
character in the range. | TextRange | ||
| bullet : Boolean
Whether the text in the range is in a bulleted list. | TextRange | ||
| color : Object
Color of the text in the range. | TextRange | ||
![]() | constructor : Object
Un riferimento all'oggetto classe o alla funzione di costruzione per una determinata istanza di oggetto. | Object | |
| endIndex : int
Zero-based index in the control's text field of the point
immediately after the last character in the range; equivalent to
the One-based index of the last character. | TextRange | ||
| fontFamily : String
Name of the font for text in the range. | TextRange | ||
| fontSize : int
Point size of the text in the range. | TextRange | ||
| fontStyle : String
Style of the font in the range, as "italic"
or "normal". | TextRange | ||
| fontWeight : String
Weight of the font in the range, as "bold"
or "normal". | TextRange | ||
| htmlText : String
Contents of the range in the form of HTML text. | TextRange | ||
| kerning : Boolean
A Boolean value that indicates whether kerning
is enabled (true) or disabled (false). | TextRange | ||
| letterSpacing : Number
The number of additional pixels to appear between each character. | TextRange | ||
| modifiesSelection : Boolean [sola lettura]
Whether the TextRange modifies the currenly selected text. | TextRange | ||
| owner : UIComponent
The control that contains the text. | TextRange | ||
| text : String
Plain-text contents of the range. | TextRange | ||
| textAlign : String
Alignment of the text in the range. | TextRange | ||
| textDecoration : String
Decoration of the font in the range, as "underline"
or "normal". | TextRange | ||
| url : String
URL for a hypertext link in the range. | TextRange | ||
| Metodo | Definito da | ||
|---|---|---|---|
TextRange(owner:UIComponent, modifiesSelection:Boolean = false, beginIndex:int = -1, endIndex:int = -1)
Create a new TextRange Object that represents a subset of the contents
of a text control, including the formatting information. | TextRange | ||
![]() |
Indica se per un oggetto è definita una proprietà specifica. | Object | |
![]() |
Indica se un'istanza della classe Object si trova nella catena di prototipi dell'oggetto specificato come parametro. | Object | |
![]() |
Indica se la proprietà specificata esiste ed è enumerabile. | Object | |
![]() |
Imposta la disponibilità di una proprietà dinamica per le operazioni cicliche. | Object | |
![]() |
Restituisce la rappresentazione in formato stringa di questo oggetto, formattato in base alle convenzioni specifiche per le versioni localizzate. | Object | |
![]() |
Restituisce la rappresentazione in formato stringa dell'oggetto specificato. | Object | |
![]() |
Restituisce il valore di base dell'oggetto specificato. | Object | |
beginIndex | proprietà |
beginIndex:int| Versione linguaggio: | ActionScript 3.0 |
| Versione prodotto: | Flex 3 |
| Versioni runtime: | Flash Player 9, AIR 1.1 |
Zero-based index in the control's text field of the first character in the range. If the fifth character in the text is the first character in the range, this property has a value of 4.
Implementazione
public function get beginIndex():int public function set beginIndex(value:int):voidbullet | proprietà |
bullet:Boolean| Versione linguaggio: | ActionScript 3.0 |
| Versione prodotto: | Flex 3 |
| Versioni runtime: | Flash Player 9, AIR 1.1 |
Whether the text in the range is in a bulleted list.
If only part of the range is in a bulleted list,
this value is false.
Implementazione
public function get bullet():Boolean public function set bullet(value:Boolean):voidcolor | proprietà |
color:Object| Versione linguaggio: | ActionScript 3.0 |
| Versione prodotto: | Flex 3 |
| Versioni runtime: | Flash Player 9, AIR 1.1 |
Color of the text in the range.
You can set this value using any valid color identifier.
The property returns the value as a numeric value.
If the range has multiple colors, this value is null.
Implementazione
public function get color():Object public function set color(value:Object):voidendIndex | proprietà |
endIndex:int| Versione linguaggio: | ActionScript 3.0 |
| Versione prodotto: | Flex 3 |
| Versioni runtime: | Flash Player 9, AIR 1.1 |
Zero-based index in the control's text field of the point immediately after the last character in the range; equivalent to the One-based index of the last character. If the fifth character in the text is the last character in the range, this property has a value of 5.
Implementazione
public function get endIndex():int public function set endIndex(value:int):voidfontFamily | proprietà |
fontFamily:String| Versione linguaggio: | ActionScript 3.0 |
| Versione prodotto: | Flex 3 |
| Versioni runtime: | Flash Player 9, AIR 1.1 |
Name of the font for text in the range.
If the range has multiple fonts, this value is null.
Implementazione
public function get fontFamily():String public function set fontFamily(value:String):voidfontSize | proprietà |
fontStyle | proprietà |
fontStyle:String| Versione linguaggio: | ActionScript 3.0 |
| Versione prodotto: | Flex 3 |
| Versioni runtime: | Flash Player 9, AIR 1.1 |
Style of the font in the range, as "italic"
or "normal". Setting the property to any other string results
in normal style.
If the range has multiple styles, this value is null.
Implementazione
public function get fontStyle():String public function set fontStyle(value:String):voidfontWeight | proprietà |
fontWeight:String| Versione linguaggio: | ActionScript 3.0 |
| Versione prodotto: | Flex 3 |
| Versioni runtime: | Flash Player 9, AIR 1.1 |
Weight of the font in the range, as "bold"
or "normal". Setting the property to any other string results
in normal weight.
If the range has multiple weights, this value is null.
Implementazione
public function get fontWeight():String public function set fontWeight(value:String):voidhtmlText | proprietà |
htmlText:String| Versione linguaggio: | ActionScript 3.0 |
| Versione prodotto: | Flex 3 |
| Versioni runtime: | Flash Player 9, AIR 1.1 |
Contents of the range in the form of HTML text.
This property returns all HTML markup for the range, including
markup for formatting that is applied by Flex, not just
HTML that you specify in using an htmlText property.
This property is, therefore, a full HTML representation of the
text as it appears in the control.
Implementazione
public function get htmlText():String public function set htmlText(value:String):voidkerning | proprietà |
kerning:Boolean| Versione linguaggio: | ActionScript 3.0 |
| Versione prodotto: | Flex 3 |
| Versioni runtime: | Flash Player 9, AIR 1.1 |
A Boolean value that indicates whether kerning
is enabled (true) or disabled (false).
Kerning adjusts the pixels between certain character pairs
to improve readability, and should be used only when necessary,
such as with headings in large fonts.
Kerning is supported for embedded fonts only.
Certain fonts, such as Verdana, and monospaced fonts,
such as Courier New, do not support kerning.
Il valore predefinito è false.
Implementazione
public function get kerning():Boolean public function set kerning(value:Boolean):voidletterSpacing | proprietà |
letterSpacing:Number| Versione linguaggio: | ActionScript 3.0 |
| Versione prodotto: | Flex 3 |
| Versioni runtime: | Flash Player 9, AIR 1.1 |
The number of additional pixels to appear between each character. A positive value increases the character spacing beyond the normal spacing, while a negative value decreases it.
Il valore predefinito è 0.
Implementazione
public function get letterSpacing():Number public function set letterSpacing(value:Number):voidmodifiesSelection | proprietà |
owner | proprietà |
owner:UIComponent| Versione linguaggio: | ActionScript 3.0 |
| Versione prodotto: | Flex 3 |
| Versioni runtime: | Flash Player 9, AIR 1.1 |
The control that contains the text.
The owner control must have a textField property,
or, as is the case of the RichTextEditor control,
a textArea property.
The owner of the text in a RichTextEditor control is the
RichTextEditor control, not its TextArea subcontrol.
Initially set by the constructor.
Implementazione
public function get owner():UIComponent public function set owner(value:UIComponent):voidtext | proprietà |
textAlign | proprietà |
textAlign:String| Versione linguaggio: | ActionScript 3.0 |
| Versione prodotto: | Flex 3 |
| Versioni runtime: | Flash Player 9, AIR 1.1 |
Alignment of the text in the range.
The flash.text.TextFormatAlign constants specify the valid values.
Setting this property to any other value has no effect.
If the range has multiple alignments, this value is null.
Implementazione
public function get textAlign():String public function set textAlign(value:String):voidElementi API correlati
textDecoration | proprietà |
textDecoration:String| Versione linguaggio: | ActionScript 3.0 |
| Versione prodotto: | Flex 3 |
| Versioni runtime: | Flash Player 9, AIR 1.1 |
Decoration of the font in the range, as "underline"
or "normal". Setting the property to any other string results
in normal text.
If the range has multiple decoration settings, this value is
null.
Implementazione
public function get textDecoration():String public function set textDecoration(value:String):voidurl | proprietà |
url:String| Versione linguaggio: | ActionScript 3.0 |
| Versione prodotto: | Flex 3 |
| Versioni runtime: | Flash Player 9, AIR 1.1 |
URL for a hypertext link in the range.
If the range does not include a link, the value
is the empty string.
If the range includes multiple links, the value
is null.
Implementazione
public function get url():String public function set url(value:String):voidTextRange | () | Funzione di costruzione |
public function TextRange(owner:UIComponent, modifiesSelection:Boolean = false, beginIndex:int = -1, endIndex:int = -1)| Versione linguaggio: | ActionScript 3.0 |
| Versione prodotto: | Flex 3 |
| Versioni runtime: | Flash Player 9, AIR 1.1 |
Create a new TextRange Object that represents a subset of the contents of a text control, including the formatting information.
Parametriowner:UIComponent — The control that contains the text. The control must have
a textField property, or, as is the case of the
RichTextEditor control, a textArea property.
| |
modifiesSelection:Boolean (default = false) — Whether to select the text in the range.
If you set this parameter to true and do not specify a
begin or end index that corresponds to text in the control, Flex
uses the begin or end index of the current text selection.
If this parameter is true, you omit the
beginIndex and endIndex
parameters, and there is no selection, the TextRange object is empty.
| |
beginIndex:int (default = -1) — Zero-based index of the first character in the range.
If the modifiesSelection parameter is false
and you omit this parameter or specify a negative value,
the range starts with the first text character.
| |
endIndex:int (default = -1) — Zero-based index of the position after the
last character in the range.
If the modifiesSelection parameter is false
and you omit this parameter, specify a negative value, or specify
a value past the end of the text, the range ends with the last
text character.
|
Tue Jun 12 2018, 02:44 PM Z
Nascondi proprietà pubbliche ereditate
Mostra proprietà pubbliche ereditate