Pakket | mx.graphics |
Klasse | public class GradientEntry |
Overerving | GradientEntry EventDispatcher Object |
Taalversie: | ActionScript 3.0 |
Productversie: | Flex 3 |
Runtimeversies: | Flash Player 9, AIR 1.1 |
The <mx:GradientEntry>
tag inherits all the tag attributes
of its superclass, and adds the following tag attributes:
<mx:GradientEntry Properties alpha="1.0" color="0x000000" ratio="NaN" />
Meer voorbeelden
Verwante API-elementen
Eigenschap | Gedefinieerd door | ||
---|---|---|---|
alpha : Number
The transparency of a gradient fill. | GradientEntry | ||
color : uint
The color value for a gradient fill. | GradientEntry | ||
constructor : Object
Verwijzing naar het klasseobject of de constructorfunctie van een bepaalde objectinstantie. | Object | ||
ratio : Number
Where in the graphical element, as a percentage from 0.0 to 1.0,
Flex samples the associated color at 100%. | GradientEntry |
Methode | Gedefinieerd door | ||
---|---|---|---|
Constructor. | GradientEntry | ||
addEventListener(type:String, listener:Function, useCapture:Boolean = false, priority:int = 0, useWeakReference:Boolean = false):void
Registreert een gebeurtenislistenerobject bij een object EventDispatcher, zodat de listener een melding van een gebeurtenis ontvangt. | EventDispatcher | ||
Verzendt een gebeurtenis naar de gebeurtenisstroom. | EventDispatcher | ||
Controleert of het object EventDispatcher listeners heeft geregistreerd voor een specifiek type gebeurtenis. | EventDispatcher | ||
Geeft aan of voor een object een opgegeven eigenschap is gedefinieerd. | Object | ||
Geeft aan of een instantie van de klasse Object zich in de prototypeketen van het object bevindt dat als parameter is opgegeven. | Object | ||
Geeft aan of de opgegeven eigenschap bestaat en kan worden opgesomd. | Object | ||
Verwijdert een listener uit het object EventDispatcher. | EventDispatcher | ||
Stelt de beschikbaarheid van een dynamische eigenschap voor lusbewerkingen in. | Object | ||
Geeft de tekenreeksweergave van dit object weer, geformatteerd volgens de locatiespecifieke conventies. | Object | ||
Retourneert een tekenreeksrepresentatie van het opgegeven object. | Object | ||
Retourneert de primitieve waarde van het opgegeven object. | Object | ||
Controleert of een gebeurtenislistener is geregistreerd bij dit object EventDispatcher of een van de voorouders voor het opgegeven type gebeurtenis. | EventDispatcher |
alpha | eigenschap |
alpha:Number
Taalversie: | ActionScript 3.0 |
Productversie: | Flex 3 |
Runtimeversies: | Flash Player 9, AIR 1.1 |
The transparency of a gradient fill. Possible values are 0.0 (invisible) through 1.0 (opaque).
De standaardwaarde is 1.0.
Deze eigenschap kan als de bron voor gegevensbinding worden gebruikt. Wanneer deze eigenschap wordt gewijzigd, wordt de gebeurtenis propertyChange
verzonden.
Implementatie
public function get alpha():Number
public function set alpha(value:Number):void
color | eigenschap |
color:uint
Taalversie: | ActionScript 3.0 |
Productversie: | Flex 3 |
Runtimeversies: | Flash Player 9, AIR 1.1 |
The color value for a gradient fill.
Deze eigenschap kan als de bron voor gegevensbinding worden gebruikt. Wanneer deze eigenschap wordt gewijzigd, wordt de gebeurtenis propertyChange
verzonden.
Implementatie
public function get color():uint
public function set color(value:uint):void
ratio | eigenschap |
ratio:Number
Taalversie: | ActionScript 3.0 |
Productversie: | Flex 3 |
Runtimeversies: | Flash Player 9, AIR 1.1 |
Where in the graphical element, as a percentage from 0.0 to 1.0, Flex samples the associated color at 100%.
Deze eigenschap kan als de bron voor gegevensbinding worden gebruikt. Wanneer deze eigenschap wordt gewijzigd, wordt de gebeurtenis propertyChange
verzonden.
Implementatie
public function get ratio():Number
public function set ratio(value:Number):void
GradientEntry | () | Constructor |
public function GradientEntry(color:uint = 0x000000, ratio:Number = NaN, alpha:Number = 1.0)
Taalversie: | ActionScript 3.0 |
Productversie: | Flex 3 |
Runtimeversies: | Flash Player 9, AIR 1.1 |
Constructor.
Parameterscolor:uint (default = 0x000000 ) — The color for this gradient entry.
The default value is 0x000000 (black).
| |
ratio:Number (default = NaN ) — Where in the graphical element the associated color is
sampled at 100%.
Flex uniformly spaces any GradientEntries
with missing ratio values.
The default value is NaN.
| |
alpha:Number (default = 1.0 ) — The alpha value for this entry in the gradient.
This parameter is optional. The default value is 1.0.
|
Wed Jun 13 2018, 11:42 AM Z