Pakket | com.adobe.solutions.rca.presentation.util |
Klasse | public class AlertFormatter |
Overerving | AlertFormatter Object |
Taalversie: | ActionScript 3.0 |
Productversie: | Review, Commenting, and Approval Building Block 10.0 |
Runtimeversies: | Flash Player 10.2, AIR (unsupported) |
Openbare eigenschappen
Eigenschap | Gedefinieerd door | ||
---|---|---|---|
constructor : Object
Verwijzing naar het klasseobject of de constructorfunctie van een bepaalde objectinstantie. | Object | ||
ERROR_ICON : Class
This property refers to error icon. | AlertFormatter | ||
INFO_ICON : Class
This property refers to information icon. | AlertFormatter | ||
OK_ICON : Class
This property refers to OK icon. | AlertFormatter | ||
WARNING_ICON : Class
This property refers to warning icon. | AlertFormatter |
Openbare methoden
Methode | Gedefinieerd door | ||
---|---|---|---|
AlertFormatter(alertParent:UIComponent = null)
The constructor for AlertFormatter class. | AlertFormatter | ||
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 | ||
Stelt de beschikbaarheid van een dynamische eigenschap voor lusbewerkingen in. | Object | ||
showAlert(message:String, title:String, icon:Class, buttons:uint, closer:Function = null, minHeight:Number = NaN, minWidth:Number = NaN):void
This method displays a generic dialog. | AlertFormatter | ||
showAlertWithNoButtonsAndReturn(message:String, title:String, icon:Class, buttons:uint, closer:Function = null, minHeight:Number = NaN, minWidth:Number = NaN):Alert
This method displays a generic dialog without any buttons. | AlertFormatter | ||
This method displays an error dialog. | AlertFormatter | ||
This method displays an information dialog. | AlertFormatter | ||
This method displays a notification dialog. | AlertFormatter | ||
This method displays a warning dialog. | AlertFormatter | ||
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 |
Eigenschapdetails
ERROR_ICON | eigenschap |
public var ERROR_ICON:Class
Taalversie: | ActionScript 3.0 |
Productversie: | Review, Commenting, and Approval Building Block 10.0 |
Runtimeversies: | Flash Player 10.2, AIR (unsupported) |
This property refers to error icon.
INFO_ICON | eigenschap |
public var INFO_ICON:Class
Taalversie: | ActionScript 3.0 |
Productversie: | Review, Commenting, and Approval Building Block 10.0 |
Runtimeversies: | Flash Player 10.2, AIR (unsupported) |
This property refers to information icon.
OK_ICON | eigenschap |
public var OK_ICON:Class
Taalversie: | ActionScript 3.0 |
Productversie: | Review, Commenting, and Approval Building Block 10.0 |
Runtimeversies: | Flash Player 10.2, AIR (unsupported) |
This property refers to OK icon.
WARNING_ICON | eigenschap |
public var WARNING_ICON:Class
Taalversie: | ActionScript 3.0 |
Productversie: | Review, Commenting, and Approval Building Block 10.0 |
Runtimeversies: | Flash Player 10.2, AIR (unsupported) |
This property refers to warning icon.
Constructordetails
AlertFormatter | () | Constructor |
public function AlertFormatter(alertParent:UIComponent = null)
Taalversie: | ActionScript 3.0 |
Productversie: | Review, Commenting, and Approval Building Block 10.0 |
Runtimeversies: | Flash Player 10.2, AIR (unsupported) |
The constructor for AlertFormatter
class.
alertParent:UIComponent (default = null ) — UI component that acts as the parent of the alert dialog.
|
Methodedetails
showAlert | () | methode |
public function showAlert(message:String, title:String, icon:Class, buttons:uint, closer:Function = null, minHeight:Number = NaN, minWidth:Number = NaN):void
Taalversie: | ActionScript 3.0 |
Productversie: | Review, Commenting, and Approval Building Block 10.0 |
Runtimeversies: | Flash Player 10.2, AIR (unsupported) |
This method displays a generic dialog.
Parameters
message:String — Message displayed in the alert dialog.
| |
title:String — Title of the alert dialog.
| |
icon:Class — Icon displayed on the dialog.
| |
buttons:uint (default = NaN ) — Buttons that are displayed on the dialog.
| |
closer:Function (default = null ) — Function invoked when the buttons on the alert are clicked.
| |
minHeight:Number (default = NaN ) — Minimum height of the alert dialog.
| |
minWidth:Number (default = NaN ) — Minimum width of the alert dialog.
|
showAlertWithNoButtonsAndReturn | () | methode |
public function showAlertWithNoButtonsAndReturn(message:String, title:String, icon:Class, buttons:uint, closer:Function = null, minHeight:Number = NaN, minWidth:Number = NaN):Alert
Taalversie: | ActionScript 3.0 |
Productversie: | Review, Commenting, and Approval Building Block 10.0 |
Runtimeversies: | Flash Player 10.2, AIR (unsupported) |
This method displays a generic dialog without any buttons.
Parameters
message:String — Message displayed in the alert dialog.
| |
title:String — Title of the alert dialog.
| |
icon:Class — Icon to be displayed in dialog.
| |
buttons:uint (default = NaN ) — The buttons that will be displayed on dialog. These buttons will not be visible.
| |
closer:Function (default = null ) — Function to be invoked when the buttons on alert are clicked.
| |
minHeight:Number (default = NaN ) — Minimum height of the alert dialog.
| |
minWidth:Number (default = NaN ) — Minimum width of the alert dialog.
|
Alert — It returns the alert dialog that is created by this method.
|
showError | () | methode |
public function showError(message:String, title:String, minHeight:Number = NaN, minWidth:Number = NaN):void
Taalversie: | ActionScript 3.0 |
Productversie: | Review, Commenting, and Approval Building Block 10.0 |
Runtimeversies: | Flash Player 10.2, AIR (unsupported) |
This method displays an error dialog.
Parameters
message:String — Message displayed in the alert dialog.
| |
title:String — Title of the alert dialog.
| |
minHeight:Number (default = NaN ) — Minimum height of the alert dialog.
| |
minWidth:Number (default = NaN ) — Minimum width of the alert dialog.
|
showInfo | () | methode |
public function showInfo(message:String, title:String, minHeight:Number = NaN, minWidth:Number = NaN):void
Taalversie: | ActionScript 3.0 |
Productversie: | Review, Commenting, and Approval Building Block 10.0 |
Runtimeversies: | Flash Player 10.2, AIR (unsupported) |
This method displays an information dialog.
Parameters
message:String — Message displayed in the alert dialog.
| |
title:String — Title of the alert dialog.
| |
minHeight:Number (default = NaN ) — Minimum height of the alert dialog.
| |
minWidth:Number (default = NaN ) — Minimum width of the alert dialog.
|
showNotification | () | methode |
public function showNotification(message:String, title:String, minHeight:Number = NaN, minWidth:Number = NaN):void
Taalversie: | ActionScript 3.0 |
Productversie: | Review, Commenting, and Approval Building Block 10.0 |
Runtimeversies: | Flash Player 10.2, AIR (unsupported) |
This method displays a notification dialog.
Parameters
message:String — Message displayed in the alert dialog.
| |
title:String — Title of the alert dialog.
| |
minHeight:Number (default = NaN ) — Minimum height of the alert dialog.
| |
minWidth:Number (default = NaN ) — Minimum width of the alert dialog.
|
showWarning | () | methode |
public function showWarning(message:String, title:String, minHeight:Number = NaN, minWidth:Number = NaN):void
Taalversie: | ActionScript 3.0 |
Productversie: | Review, Commenting, and Approval Building Block 10.0 |
Runtimeversies: | Flash Player 10.2, AIR (unsupported) |
This method displays a warning dialog.
Parameters
message:String — Message displayed in the alert dialog.
| |
title:String — Title of the alert dialog.
| |
minHeight:Number (default = NaN ) — Minimum height of the alert dialog.
| |
minWidth:Number (default = NaN ) — Minimum width of the alert dialog.
|
Wed Jun 13 2018, 11:42 AM Z