Pakiet | mx.graphics |
Klasa | public class GradientBase |
Dziedziczenie | GradientBase EventDispatcher Object |
Podklasy | GradientStroke, LinearGradient, RadialGradient |
Wersja języka: | ActionScript 3.0 |
Wersja produktu: | Flex 3 |
Wersje środowiska wykonawczego: | Flash Player 9, AIR 1.1 |
Domyślna właściwość MXMLentries
Właściwość | Zdefiniowane przez | ||
---|---|---|---|
angle : Number Przestarzałe: Użyj rotation
By default, the LinearGradientStroke defines a transition
from left to right across the control. | GradientBase | ||
constructor : Object
Odwołanie do obiektu klasy lub funkcji konstruktora, dotyczące danej instancji obiektu. | Object | ||
entries : Array
An Array of GradientEntry objects
defining the fill patterns for the gradient fill. | GradientBase | ||
interpolationMethod : String
A value from the InterpolationMethod class
that specifies which interpolation method to use. | GradientBase | ||
matrix : Matrix
An array of values used for matrix transformation. | GradientBase | ||
rotation : Number
By default, the LinearGradientStroke defines a transition
from left to right across the control. | GradientBase | ||
spreadMethod : String
A value from the SpreadMethod class
that specifies which spread method to use. | GradientBase | ||
x : Number
The distance by which to translate each point along the x axis. | GradientBase | ||
y : Number
The distance by which to translate each point along the y axis. | GradientBase |
Właściwość | Zdefiniowane przez | ||
---|---|---|---|
compoundTransform : mx.geom:CompoundTransform
Holds the matrix and the convenience transform properties (x, y, and rotation). | GradientBase |
Metoda | Zdefiniowane przez | ||
---|---|---|---|
Constructor. | GradientBase | ||
addEventListener(type:String, listener:Function, useCapture:Boolean = false, priority:int = 0, useWeakReference:Boolean = false):void
Rejestruje obiekt detektora zdarzeń w obiekcie EventDispatcher, dzięki czemu detektor będzie otrzymywał powiadomienia o zdarzeniu. | EventDispatcher | ||
Wywołuje zdarzenie, tj. kieruje je do przepływu zdarzeń. | EventDispatcher | ||
Sprawdza, czy obiekt EventDispatcher zawiera jakiekolwiek detektory zarejestrowane dla konkretnego typu zdarzeń. | EventDispatcher | ||
Wskazuje, czy dla obiektu zdefiniowano określoną właściwość. | Object | ||
Wskazuje, czy instancja klasy Object należy do łańcucha prototypów obiektu określonego jako parametr. | Object | ||
Wskazuje, czy określona właściwość istnieje i jest przeliczalna. | Object | ||
Usuwa detektor z obiektu EventDispatcher. | EventDispatcher | ||
Ustawia dostępność właściwości dynamicznej używanej w pętlach. | Object | ||
Zwraca ciąg reprezentujący obiekt — sformatowany zgodnie z konwencjami właściwymi dla ustawień regionalnych. | Object | ||
Zwraca ciąg reprezentujący określony obiekt. | Object | ||
Zwraca pierwotną wartość dla określonego obiektu. | Object | ||
Sprawdza, czy detektor zdarzeń określonego typu jest zarejestrowany w tym obiekcie EventDispatcher lub jego elementach macierzystych. | EventDispatcher |
Stała | Zdefiniowane przez | ||
---|---|---|---|
GRADIENT_DIMENSION : Number = 1638.4 [statyczny]
Value of the width and height of the untransformed gradient
| GradientBase |
angle | właściwość |
angle:Number
Wersja języka: | ActionScript 3.0 |
Wersja produktu: | Flex 3 |
Wersje środowiska wykonawczego: | Flash Player 9, AIR 1.1 |
By default, the LinearGradientStroke defines a transition
from left to right across the control.
Use the angle
property to control the transition direction.
For example, a value of 180.0 causes the transition
to occur from right to left, rather than from left to right.
Wartością domyślną jest 0.0.
Implementacja
public function get angle():Number
public function set angle(value:Number):void
compoundTransform | właściwość |
protected var compoundTransform:mx.geom:CompoundTransform
Wersja języka: | ActionScript 3.0 |
Wersja produktu: | Flex 3 |
Wersje środowiska wykonawczego: | 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.
entries | właściwość |
entries:Array
Wersja języka: | ActionScript 3.0 |
Wersja produktu: | Flex 3 |
Wersje środowiska wykonawczego: | Flash Player 9, AIR 1.1 |
An Array of GradientEntry objects defining the fill patterns for the gradient fill.
Wartością domyślną jest [].
Ta właściwość może być używana jako źródło dla tworzenia powiązań danych. Jeśli ta właściwość zostanie zmodyfikowana, zostanie wywołane zdarzenie propertyChange
.
Implementacja
public function get entries():Array
public function set entries(value:Array):void
interpolationMethod | właściwość |
interpolationMethod:String
Wersja języka: | ActionScript 3.0 |
Wersja produktu: | Flex 3 |
Wersje środowiska wykonawczego: | Flash Player 9, AIR 1.1 |
A value from the InterpolationMethod class that specifies which interpolation method to use.
Valid values are InterpolationMethod.LINEAR_RGB
and InterpolationMethod.RGB
.
Wartością domyślną jest InterpolationMethod.RGB.
Implementacja
public function get interpolationMethod():String
public function set interpolationMethod(value:String):void
matrix | właściwość |
matrix:Matrix
Wersja języka: | ActionScript 3.0 |
Wersja produktu: | Flex 3 |
Wersje środowiska wykonawczego: | Flash Player 9, AIR 1.1 |
An array of values used for matrix transformation.
The gradient scaleX
and scaleY
properties represent pixels while the Matrix scale properties represent multipliers.
Thus they are not compatible.
Another difference is the most of the transform properties (x
, y
, scaleX
, and scaleY
)
support NaN values while the matrix does not. A NaN value means that the gradient will choose an appropriate value.
The scaleX
and scaleY
properties can not be represented by the matrix.
Once the matrix is set, scaleX
and scaleY
can no longer be set.
Also, x
and y
can not be set to NaN.
The matrix can be set back to null which also resets all of the convenience transform properties back to their default values.
If the matrix is set, then the gradient draw logic will scale the gradient to fit the bounds of the graphic element. It will then position the gradient in the upper left corner of the graphic element. Finally, it will apply the matrix transformations.
By default, the LinearGradientStroke defines a transition
from left to right across the control.
Use the rotation
property to control the transition direction.
For example, a value of 180.0 causes the transition
to occur from right to left, rather than from left to right.
Wartością domyślną jest null.
Implementacja
public function get matrix():Matrix
public function set matrix(value:Matrix):void
rotation | właściwość |
rotation:Number
Wersja języka: | ActionScript 3.0 |
Wersja produktu: | Flex 3 |
Wersje środowiska wykonawczego: | Flash Player 9, AIR 1.1 |
By default, the LinearGradientStroke defines a transition
from left to right across the control.
Use the rotation
property to control the transition direction.
For example, a value of 180.0 causes the transition
to occur from right to left, rather than from left to right.
Wartością domyślną jest 0.0.
Ta właściwość może być używana jako źródło dla tworzenia powiązań danych. Jeśli ta właściwość zostanie zmodyfikowana, zostanie wywołane zdarzenie propertyChange
.
Implementacja
public function get rotation():Number
public function set rotation(value:Number):void
spreadMethod | właściwość |
spreadMethod:String
Wersja języka: | ActionScript 3.0 |
Wersja produktu: | Flex 3 |
Wersje środowiska wykonawczego: | Flash Player 9, AIR 1.1 |
A value from the SpreadMethod class that specifies which spread method to use.
Valid values are SpreadMethod.PAD
,
SpreadMethod.REFLECT
,
and SpreadMethod.REPEAT
.
Wartością domyślną jest SpreadMethod.PAD.
Ta właściwość może być używana jako źródło dla tworzenia powiązań danych. Jeśli ta właściwość zostanie zmodyfikowana, zostanie wywołane zdarzenie propertyChange
.
Implementacja
public function get spreadMethod():String
public function set spreadMethod(value:String):void
x | właściwość |
x:Number
Wersja języka: | ActionScript 3.0 |
Wersja produktu: | Flex 3 |
Wersje środowiska wykonawczego: | Flash Player 9, AIR 1.1 |
The distance by which to translate each point along the x axis.
Ta właściwość może być używana jako źródło dla tworzenia powiązań danych. Jeśli ta właściwość zostanie zmodyfikowana, zostanie wywołane zdarzenie propertyChange
.
Implementacja
public function get x():Number
public function set x(value:Number):void
y | właściwość |
y:Number
Wersja języka: | ActionScript 3.0 |
Wersja produktu: | Flex 3 |
Wersje środowiska wykonawczego: | Flash Player 9, AIR 1.1 |
The distance by which to translate each point along the y axis.
Ta właściwość może być używana jako źródło dla tworzenia powiązań danych. Jeśli ta właściwość zostanie zmodyfikowana, zostanie wywołane zdarzenie propertyChange
.
Implementacja
public function get y():Number
public function set y(value:Number):void
GradientBase | () | Konstruktor |
public function GradientBase()
Wersja języka: | ActionScript 3.0 |
Wersja produktu: | Flex 3 |
Wersje środowiska wykonawczego: | Flash Player 9, AIR 1.1 |
Constructor.
GRADIENT_DIMENSION | Stała |
public static const GRADIENT_DIMENSION:Number = 1638.4
Wersja języka: | ActionScript 3.0 |
Wersja produktu: | Flex 4 |
Wersje środowiska wykonawczego: | Flash Player 10, AIR 1.5 |
Value of the width and height of the untransformed gradient
Tue Jun 12 2018, 12:06 PM Z