Paket | lc.foundation |
Arabirim | public interface IPreferencesManager extends IManager , IEventDispatcher |
Uygulayıcılar | PreferencesManager |
Dil Sürümü: | ActionScript 3.0 |
Ürün Sürümü: | Adobe Digital Enterprise Platform Document Services - Workspace 9 |
Çalışma Zamanı Sürümleri: | AIR (unsupported), Flash Player 9, Flash Player 10 |
IPreferencesManager
interface is implemented
to manage the various preferences that the user has access to.
Implement the IPreferencesManager
interface to retrieve a list of preferences that a user can
set or change.
Preferences that start with "/"
are system properties
and cannot be modified; Preferences that do not start with
"/"
are user properties and can be modified.
Genel Yöntemler
Yöntem | Tanımlayan: | ||
---|---|---|---|
addEventListener(type:String, listener:Function, useCapture:Boolean = false, priority:int = 0, useWeakReference:Boolean = false):void
EventDispatcher nesnesi olan bir olay dinleyici nesnesini, dinleyicinin bir olayın bildirimini alması için kaydeder. | IEventDispatcher | ||
Olay akışına bir olay gönderir. | IEventDispatcher | ||
Get a list of all preferences starting with a provided prefix. | IPreferencesManager | ||
Get the value of the preference with the provided name. | IPreferencesManager | ||
Determines whether the default operation is prevented. | IManager | ||
Determines whether the default operation is prevented. | IManager | ||
EventDispatcher nesnesinin belirli bir olay türü için kayıtlı dinleyicisi olup olmadığını kontrol eder. | IEventDispatcher | ||
Loads all preferences into the manager. | IPreferencesManager | ||
EventDispatcher nesnesinden bir dinleyiciyi kaldırır. | IEventDispatcher | ||
Set the value of the preference with the provided name. | IPreferencesManager | ||
Bir olay dinleyicisinin bu EventDispatcher nesnesiyle mi, yoksa onun belirtilen olay türüne yönelik üst öğelerinden biriyle mi kayıtlı olduğunu kontrol eder. | IEventDispatcher |
Yöntem Ayrıntısı
getPreferencesStartingWith | () | yöntem |
public function getPreferencesStartingWith(namePrefix:String):ListCollectionView
Dil Sürümü: | ActionScript 3.0 |
Ürün Sürümü: | Adobe Digital Enterprise Platform Document Services - Workspace 9 |
Çalışma Zamanı Sürümleri: | AIR (unsupported), Flash Player 9, Flash Player 10 |
Get a list of all preferences starting with a provided prefix.
Parametreler
namePrefix:String — preference prefix.
|
ListCollectionView — A list of all preferences starting with a provided prefix.
|
getPreferenceValue | () | yöntem |
public function getPreferenceValue(name:String):Object
Dil Sürümü: | ActionScript 3.0 |
Ürün Sürümü: | Adobe Digital Enterprise Platform Document Services - Workspace 9 |
Çalışma Zamanı Sürümleri: | AIR (unsupported), Flash Player 9, Flash Player 10 |
Get the value of the preference with the provided name.
Parametreler
name:String — preference name.
|
Object — The value of the preference with the provided name.
|
preferencesLoad | () | yöntem |
public function preferencesLoad(types:String):lc.foundation.util:Token
Dil Sürümü: | ActionScript 3.0 |
Ürün Sürümü: | Adobe Digital Enterprise Platform Document Services - Workspace 9 |
Çalışma Zamanı Sürümleri: | AIR (unsupported), Flash Player 9, Flash Player 10 |
Loads all preferences into the manager.
Parametreler
types:String — Specifies the preferences to load. (Not implemented)
|
lc.foundation.util:Token — A token used to set result and fault handlers that execute when the operation completes.
|
setPreferenceValue | () | yöntem |
public function setPreferenceValue(name:String, value:Object):void
Dil Sürümü: | ActionScript 3.0 |
Ürün Sürümü: | Adobe Digital Enterprise Platform Document Services - Workspace 9 |
Çalışma Zamanı Sürümleri: | AIR (unsupported), Flash Player 9, Flash Player 10 |
Set the value of the preference with the provided name. Attempting to set the value of a system preference will be silently ignored.
Parametreler
name:String — The name of preference.
| |
value:Object — The value of the preference.
|
Tue Jun 12 2018, 01:09 PM Z