Pacchetto | mx.graphics |
Classe | public class BitmapFill |
Ereditarietà | BitmapFill EventDispatcher Object |
Implementa | IFill |
Versione linguaggio: | ActionScript 3.0 |
Versione prodotto: | Flex 3 |
Versioni runtime: | Flash Player 9, AIR 1.1 |
Altri esempi
Elementi API correlati
Proprietà | Definito da | ||
---|---|---|---|
alpha : Number
The transparency of a fill. | BitmapFill | ||
constructor : Object
Un riferimento all'oggetto classe o alla funzione di costruzione per una determinata istanza di oggetto. | Object | ||
fillMode : String
Determines how the bitmap fills in the dimensions. | BitmapFill | ||
matrix : Matrix
An array of values used for matrix transformation. | BitmapFill | ||
offsetX : Number Obsoleto da 4.0: Da utilizzare x
How far the bitmap is horizontally offset from the origin. | BitmapFill | ||
offsetY : Number Obsoleto da 4.0: Da utilizzare y
How far the bitmap is vertically offset from the origin. | BitmapFill | ||
originX : Number Obsoleto da 4.0: Da utilizzare transformX
The horizontal origin for the bitmap fill. | BitmapFill | ||
originY : Number Obsoleto da 4.0: Da utilizzare transformY
The vertical origin for the bitmap fill. | BitmapFill | ||
repeat : Boolean Obsoleto da 4.0: Da utilizzare fillMode
Whether the bitmap is repeated to fill the area. | BitmapFill | ||
rotation : Number
The number of degrees to rotate the bitmap. | BitmapFill | ||
scaleX : Number
The percent to horizontally scale the bitmap when filling,
from 0.0 to 1.0. | BitmapFill | ||
scaleY : Number
The percent to vertically scale the bitmap when filling,
from 0.0 to 1.0. | BitmapFill | ||
smooth : Boolean
A flag indicating whether to smooth the bitmap data
when filling with it. | BitmapFill | ||
source : Object
The source used for the bitmap fill. | BitmapFill | ||
transformX : Number
The x position transform point of the fill. | BitmapFill | ||
transformY : Number
The y position transform point of the fill. | BitmapFill | ||
x : Number
The distance by which to translate each point along the x axis. | BitmapFill | ||
y : Number
The distance by which to translate each point along the y axis. | BitmapFill |
Proprietà | Definito da | ||
---|---|---|---|
compoundTransform : mx.geom:CompoundTransform
Holds the matrix and the convenience transform properties (x, y, and rotation). | BitmapFill |
Metodo | Definito da | ||
---|---|---|---|
Constructor. | BitmapFill | ||
addEventListener(type:String, listener:Function, useCapture:Boolean = false, priority:int = 0, useWeakReference:Boolean = false):void
Registra un oggetto listener di eventi con un oggetto EventDispatcher, in modo che il listener riceva la notifica di un evento. | EventDispatcher | ||
Invia un evento nel flusso di eventi. | EventDispatcher | ||
Verifica se per l'oggetto EventDispatcher sono presenti listener registrati per un tipo specifico di evento. | EventDispatcher | ||
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 | ||
Rimuove un listener dall'oggetto EventDispatcher. | EventDispatcher | ||
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 | ||
Verifica se un listener di eventi è registrato con questo oggetto EventDispatcher o qualsiasi suo antenato per il tipo di evento specificato. | EventDispatcher |
alpha | proprietà |
alpha:Number
Versione linguaggio: | ActionScript 3.0 |
Versione prodotto: | Flex 3 |
Versioni runtime: | Flash Player 9, AIR 1.1 |
The transparency of a fill. Possible values are 0.0 (invisible) through 1.0 (opaque).
Il valore predefinito è 1.0..
Implementazione
public function get alpha():Number
public function set alpha(value:Number):void
compoundTransform | proprietà |
protected var compoundTransform:mx.geom:CompoundTransform
Versione linguaggio: | ActionScript 3.0 |
Versione prodotto: | Flex 3 |
Versioni runtime: | Flash Player 9, AIR 1.1 |
Holds the matrix and the convenience transform properties (x
, y
, and rotation
).
The compoundTransform is only created when the matrix
property is set.
fillMode | proprietà |
fillMode:String
Versione linguaggio: | ActionScript 3.0 |
Versione prodotto: | Flex 4 |
Versioni runtime: | Flash Player 10, AIR 1.5 |
Determines how the bitmap fills in the dimensions. If you set the value
of this property in a tag, use the string (such as "repeat"). If you set the value of
this property in ActionScript, use the constant (such as BitmapFillMode.CLIP
).
When set to BitmapFillMode.CLIP
("clip"), the bitmap
ends at the edge of the region.
When set to BitmapFillMode.REPEAT
("repeat"), the bitmap
repeats to fill the region.
When set to BitmapFillMode.SCALE
("scale"), the bitmap
stretches to fill the region.
Il valore predefinito è BitmapFillMode.SCALE
.
Implementazione
public function get fillMode():String
public function set fillMode(value:String):void
matrix | proprietà |
offsetX | proprietà |
offsetX:Number
Versione linguaggio: | ActionScript 3.0 |
Versione prodotto: | Flex 3 |
Versioni runtime: | Flash Player 9, AIR 1.1 |
How far the bitmap is horizontally offset from the origin. This adjustment is performed after rotation and scaling.
Il valore predefinito è 0.
Questa proprietà può essere utilizzata come origine per l’associazione di dati. Quando questa proprietà viene modificata, invia l’evento propertyChange
.
Implementazione
public function get offsetX():Number
public function set offsetX(value:Number):void
offsetY | proprietà |
offsetY:Number
Versione linguaggio: | ActionScript 3.0 |
Versione prodotto: | Flex 3 |
Versioni runtime: | Flash Player 9, AIR 1.1 |
How far the bitmap is vertically offset from the origin. This adjustment is performed after rotation and scaling.
Il valore predefinito è 0.
Questa proprietà può essere utilizzata come origine per l’associazione di dati. Quando questa proprietà viene modificata, invia l’evento propertyChange
.
Implementazione
public function get offsetY():Number
public function set offsetY(value:Number):void
originX | proprietà |
originX:Number
Versione linguaggio: | ActionScript 3.0 |
Versione prodotto: | Flex 3 |
Versioni runtime: | Flash Player 9, AIR 1.1 |
The horizontal origin for the bitmap fill. The bitmap fill is offset so that this point appears at the origin. Scaling and rotation of the bitmap are performed around this point.
Il valore predefinito è 0.
Questa proprietà può essere utilizzata come origine per l’associazione di dati. Quando questa proprietà viene modificata, invia l’evento propertyChange
.
Implementazione
public function get originX():Number
public function set originX(value:Number):void
originY | proprietà |
originY:Number
Versione linguaggio: | ActionScript 3.0 |
Versione prodotto: | Flex 3 |
Versioni runtime: | Flash Player 9, AIR 1.1 |
The vertical origin for the bitmap fill. The bitmap fill is offset so that this point appears at the origin. Scaling and rotation of the bitmap are performed around this point.
Il valore predefinito è 0.
Questa proprietà può essere utilizzata come origine per l’associazione di dati. Quando questa proprietà viene modificata, invia l’evento propertyChange
.
Implementazione
public function get originY():Number
public function set originY(value:Number):void
repeat | proprietà |
repeat:Boolean
Versione linguaggio: | ActionScript 3.0 |
Versione prodotto: | Flex 3 |
Versioni runtime: | Flash Player 9, AIR 1.1 |
Whether the bitmap is repeated to fill the area.
Set to true
to cause the fill to tile outward
to the edges of the filled region.
Set to false
to end the fill at the edge of the region.
Il valore predefinito è true.
Questa proprietà può essere utilizzata come origine per l’associazione di dati. Quando questa proprietà viene modificata, invia l’evento propertyChange
.
Implementazione
public function get repeat():Boolean
public function set repeat(value:Boolean):void
rotation | proprietà |
rotation:Number
Versione linguaggio: | ActionScript 3.0 |
Versione prodotto: | Flex 3 |
Versioni runtime: | Flash Player 9, AIR 1.1 |
The number of degrees to rotate the bitmap. Valid values range from 0.0 to 360.0.
Il valore predefinito è 0.
Questa proprietà può essere utilizzata come origine per l’associazione di dati. Quando questa proprietà viene modificata, invia l’evento propertyChange
.
Implementazione
public function get rotation():Number
public function set rotation(value:Number):void
scaleX | proprietà |
scaleX:Number
Versione linguaggio: | ActionScript 3.0 |
Versione prodotto: | Flex 3 |
Versioni runtime: | Flash Player 9, AIR 1.1 |
The percent to horizontally scale the bitmap when filling, from 0.0 to 1.0. If 1.0, the bitmap is filled at its natural size.
Questa proprietà può essere utilizzata come origine per l’associazione di dati. Quando questa proprietà viene modificata, invia l’evento propertyChange
.
Implementazione
public function get scaleX():Number
public function set scaleX(value:Number):void
scaleY | proprietà |
scaleY:Number
Versione linguaggio: | ActionScript 3.0 |
Versione prodotto: | Flex 3 |
Versioni runtime: | Flash Player 9, AIR 1.1 |
The percent to vertically scale the bitmap when filling, from 0.0 to 1.0. If 1.0, the bitmap is filled at its natural size.
Questa proprietà può essere utilizzata come origine per l’associazione di dati. Quando questa proprietà viene modificata, invia l’evento propertyChange
.
Implementazione
public function get scaleY():Number
public function set scaleY(value:Number):void
smooth | proprietà |
smooth:Boolean
Versione linguaggio: | ActionScript 3.0 |
Versione prodotto: | Flex 3 |
Versioni runtime: | Flash Player 9, AIR 1.1 |
A flag indicating whether to smooth the bitmap data when filling with it.
Il valore predefinito è false.
Questa proprietà può essere utilizzata come origine per l’associazione di dati. Quando questa proprietà viene modificata, invia l’evento propertyChange
.
Implementazione
public function get smooth():Boolean
public function set smooth(value:Boolean):void
source | proprietà |
source:Object
Versione linguaggio: | ActionScript 3.0 |
Versione prodotto: | Flex 3 |
Versioni runtime: | Flash Player 9, AIR 1.1 |
The source used for the bitmap fill. The fill can render from various graphical sources, including the following:
- A Bitmap or BitmapData instance.
- A class representing a subclass of DisplayObject. The BitmapFill instantiates the class and creates a bitmap rendering of it.
- An instance of a DisplayObject. The BitmapFill copies it into a Bitmap for filling.
Il valore predefinito è null.
Implementazione
public function get source():Object
public function set source(value:Object):void
transformX | proprietà |
transformY | proprietà |
x | proprietà |
x:Number
Versione linguaggio: | ActionScript 3.0 |
Versione prodotto: | Flex 3 |
Versioni runtime: | Flash Player 9, AIR 1.1 |
The distance by which to translate each point along the x axis.
Questa proprietà può essere utilizzata come origine per l’associazione di dati. Quando questa proprietà viene modificata, invia l’evento propertyChange
.
Implementazione
public function get x():Number
public function set x(value:Number):void
y | proprietà |
y:Number
Versione linguaggio: | ActionScript 3.0 |
Versione prodotto: | Flex 3 |
Versioni runtime: | Flash Player 9, AIR 1.1 |
The distance by which to translate each point along the y axis.
Questa proprietà può essere utilizzata come origine per l’associazione di dati. Quando questa proprietà viene modificata, invia l’evento propertyChange
.
Implementazione
public function get y():Number
public function set y(value:Number):void
BitmapFill | () | Funzione di costruzione |
public function BitmapFill()
Versione linguaggio: | ActionScript 3.0 |
Versione prodotto: | Flex 3 |
Versioni runtime: | Flash Player 9, AIR 1.1 |
Constructor.
Tue Jun 12 2018, 02:44 PM Z