Пакет | lc.foundation |
Интерфейс | public interface IPreferencesManager extends IManager , IEventDispatcher |
Средство реализации | PreferencesManager |
Язык версии: | ActionScript 3.0 |
Версия продукта: | Adobe Digital Enterprise Platform Document Services - Workspace 9 |
Версии среды выполнения: | 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.
Общедоступные свойства
Общедоступные методы
Метод | Определено | ||
---|---|---|---|
addEventListener(type:String, listener:Function, useCapture:Boolean = false, priority:int = 0, useWeakReference:Boolean = false):void
Регистрирует объект прослушивателя события на объекте EventDispatcher для получения прослушивателем уведомления о событии. | IEventDispatcher | ||
Посылает событие в поток событий. | 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 прослушиватели, зарегистрированные для определенного типа события. | IEventDispatcher | ||
Loads all preferences into the manager. | IPreferencesManager | ||
Удаляет прослушиватель из объекта EventDispatcher. | IEventDispatcher | ||
Set the value of the preference with the provided name. | IPreferencesManager | ||
Проверяет, зарегистрирован ли прослушиватель события для указанного типа события с данным объектом EventDispatcher или любым его предшественником. | IEventDispatcher |
Сведения о методе
getPreferencesStartingWith | () | метод |
public function getPreferencesStartingWith(namePrefix:String):ListCollectionView
Язык версии: | ActionScript 3.0 |
Версия продукта: | Adobe Digital Enterprise Platform Document Services - Workspace 9 |
Версии среды выполнения: | AIR (unsupported), Flash Player 9, Flash Player 10 |
Get a list of all preferences starting with a provided prefix.
Параметры
namePrefix:String — preference prefix.
|
ListCollectionView — A list of all preferences starting with a provided prefix.
|
getPreferenceValue | () | метод |
public function getPreferenceValue(name:String):Object
Язык версии: | ActionScript 3.0 |
Версия продукта: | Adobe Digital Enterprise Platform Document Services - Workspace 9 |
Версии среды выполнения: | AIR (unsupported), Flash Player 9, Flash Player 10 |
Get the value of the preference with the provided name.
Параметры
name:String — preference name.
|
Object — The value of the preference with the provided name.
|
preferencesLoad | () | метод |
public function preferencesLoad(types:String):lc.foundation.util:Token
Язык версии: | ActionScript 3.0 |
Версия продукта: | Adobe Digital Enterprise Platform Document Services - Workspace 9 |
Версии среды выполнения: | AIR (unsupported), Flash Player 9, Flash Player 10 |
Loads all preferences into the manager.
Параметры
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 | () | метод |
public function setPreferenceValue(name:String, value:Object):void
Язык версии: | ActionScript 3.0 |
Версия продукта: | Adobe Digital Enterprise Platform Document Services - Workspace 9 |
Версии среды выполнения: | 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.
Параметры
name:String — The name of preference.
| |
value:Object — The value of the preference.
|
Tue Jun 12 2018, 11:34 AM Z