| Paket | mx.charts.chartClasses |
| Sınıf | public class InstanceCache |
| Miras Alma | InstanceCache Object |
| Dil Sürümü: | ActionScript 3.0 |
| Ürün Sürümü: | Flex 3 |
| Çalışma Zamanı Sürümleri: | Flash Player 9, AIR 1.1 |
| Özellik | Tanımlayan: | ||
|---|---|---|---|
![]() | constructor : Object
Belirli bir nesne örneği için sınıf nesnesine veya yapıcı işlevine bir başvuru. | Object | |
| count : int
The number of items currently required in the cache. | InstanceCache | ||
| creationCallback : Function
A callback invoked when new instances are created. | InstanceCache | ||
| discard : Boolean = false
Determines if unneeded instances are discarded. | InstanceCache | ||
| factory : IFactory
A factory that generates the type of object to cache. | InstanceCache | ||
| format : flash.text:TextFormat
A TextFormat to apply to any instances created. | InstanceCache | ||
| hide : Boolean = true
Determines if unneeded instances should be hidden. | InstanceCache | ||
| insertPosition : int [salt yazılır]
The position of the instance in the parent's child list. | InstanceCache | ||
| instances : Array [salt okunur]
The Array of cached instances. | InstanceCache | ||
| properties : Object
A hashmap of properties to assign to new instances. | InstanceCache | ||
| remove : Boolean = false
Determines if unneeded instances should be removed from their parent. | InstanceCache | ||
| Yöntem | Tanımlayan: | ||
|---|---|---|---|
InstanceCache(type:Object, parent:Object = null, insertPosition:int = -1, moduleFactory:IFlexModuleFactory = null)
Constructor. | InstanceCache | ||
![]() |
Bir nesnenin belirli bir özelliğinin tanımlı olup olmadığını gösterir. | Object | |
![]() |
Object sınıfının bir örneğinin parametre olarak belirtilen nesnenin prototip zincirinde olup olmadığını gösterir. | Object | |
![]() |
Belirtilen özelliğin bulunup bulunmadığını ve numaralandırılabilir olup olmadığını gösterir. | Object | |
![]() |
Dinamik bir özelliğin döngü işlemlerinde kullanılabilirliğini ayarlar. | Object | |
![]() |
Bu nesnenin, yerel ayara özel kurallara göre biçimlendirilmiş dize temsilini döndürür. | Object | |
![]() |
Belirtilen nesnenin dize olarak temsil edilen halini döndürür. | Object | |
![]() |
Belirtilen nesnenin temel değerini döndürür. | Object | |
count | özellik |
creationCallback | özellik |
public var creationCallback:Function| Dil Sürümü: | ActionScript 3.0 |
| Ürün Sürümü: | Flex 3 |
| Çalışma Zamanı Sürümleri: | Flash Player 9, AIR 1.1 |
A callback invoked when new instances are created. This callback has the following signature:
function creationCallback(newInstance:Object, cache:InstanceCache):void;
discard | özellik |
public var discard:Boolean = false| Dil Sürümü: | ActionScript 3.0 |
| Ürün Sürümü: | Flex 3 |
| Çalışma Zamanı Sürümleri: | Flash Player 9, AIR 1.1 |
Determines if unneeded instances are discarded.
If set to true, extra elements are discarded
when the cache count is reduced.
Otherwise, extra elements are kept in a separate cache
and reused when the count is increased.
factory | özellik |
factory:IFactory| Dil Sürümü: | ActionScript 3.0 |
| Ürün Sürümü: | Flex 3 |
| Çalışma Zamanı Sürümleri: | Flash Player 9, AIR 1.1 |
A factory that generates the type of object to cache. Assigning to this discards all current instances and recreate new instances of the correct type.
Uygulama
public function get factory():IFactory public function set factory(value:IFactory):voidformat | özellik |
format:flash.text:TextFormat| Dil Sürümü: | ActionScript 3.0 |
| Ürün Sürümü: | Flex 3 |
| Çalışma Zamanı Sürümleri: | Flash Player 9, AIR 1.1 |
A TextFormat to apply to any instances created. If set, this format is applied as the current and default format for the contents of any instances created. This property is only relevant if the factory generates TextField instances.
Uygulama
public function get format():flash.text:TextFormat public function set format(value:flash.text:TextFormat):voidhide | özellik |
public var hide:Boolean = true| Dil Sürümü: | ActionScript 3.0 |
| Ürün Sürümü: | Flex 3 |
| Çalışma Zamanı Sürümleri: | Flash Player 9, AIR 1.1 |
Determines if unneeded instances should be hidden.
If true, the visible property
is set to false on each extra element
when the cache count is reduced, and set to true
when the count is increased.
This property is only relevant when the factory
generates DisplayObjects.
Setting this property to true for other factory types
generates a run-time error.
insertPosition | özellik |
instances | özellik |
instances:Array [salt okunur] | Dil Sürümü: | ActionScript 3.0 |
| Ürün Sürümü: | Flex 3 |
| Çalışma Zamanı Sürümleri: | Flash Player 9, AIR 1.1 |
The Array of cached instances.
There may be more instances in this Array than currently requested.
You should rely on the count property
of the instance cache rather than the length of this Array.
Uygulama
public function get instances():Arrayproperties | özellik |
properties:Object| Dil Sürümü: | ActionScript 3.0 |
| Ürün Sürümü: | Flex 3 |
| Çalışma Zamanı Sürümleri: | Flash Player 9, AIR 1.1 |
A hashmap of properties to assign to new instances. Each key/value pair in this hashmap is assigned to each new instance created. The property hashmap is assigned to any existing instances when set.
The values in the hashmap are not cloned; object values are shared by all instances.
Uygulama
public function get properties():Object public function set properties(value:Object):voidremove | özellik |
public var remove:Boolean = false| Dil Sürümü: | ActionScript 3.0 |
| Ürün Sürümü: | Flex 3 |
| Çalışma Zamanı Sürümleri: | Flash Player 9, AIR 1.1 |
Determines if unneeded instances should be removed from their parent.
If true, the removeChild() method
is called on the parent for each extra element
when the cache count is reduced.
This property is only relevant when the factory
generates DisplayObjects.
Setting this property to true for other factory types
generates a run-time error.
InstanceCache | () | Yapıcı |
public function InstanceCache(type:Object, parent:Object = null, insertPosition:int = -1, moduleFactory:IFlexModuleFactory = null)| Dil Sürümü: | ActionScript 3.0 |
| Ürün Sürümü: | Flex 3 |
| Çalışma Zamanı Sürümleri: | Flash Player 9, AIR 1.1 |
Constructor.
Parametrelertype:Object — The type of object to construct.
This can be either a Class or an IFactory.
| |
parent:Object (default = null) — An optional DisplayObject to add new instances to.
| |
insertPosition:int (default = -1) — Where in the parent's child list
to insert instances. Set to -1 to add the children to the end of the child list.
| |
moduleFactory:IFlexModuleFactory (default = null) — The context for using embedded fonts and for
finding the style manager that controls the styles for this component.
|
Tue Jun 12 2018, 01:09 PM Z
Miras Alınan Genel Özellikleri Gizle
Miras Alınan Genel Özellikleri Göster