| Pakiet | mx.controls.menuClasses |
| Interfejs | public interface IMenuItemRenderer |
| Implementory | MenuItemRenderer |
| Wersja języka: | ActionScript 3.0 |
| Wersja produktu: | Flex 3 |
| Wersje środowiska wykonawczego: | Flash Player 9, AIR 1.1 |
The menu item renderers are often recycled. Once they are created, they may be used again simply by being given new data. Therefore, in individual implementations, component developers must make sure that component properties are not assumed to contain specific initial, or default values.
To implement this interface, a component developer must define a
setter and getter method that implements the menu property.
Typically, the setter method writes the value of the data property
to an internal variable, and the getter method returns the current
value of the internal variable, as the following example shows:
// Internal variable for the property value.
private var _menu:Menu;
// Define the getter method.
public function get menu():Menu
{
return _menu;
}
// Define the setter method.
public function set menu(value:Menu):void
{
_menu = value;
}
| Właściwość | Zdefiniowane przez | ||
|---|---|---|---|
| measuredBranchIconWidth : Number [tylko do odczytu]
The width of the branch icon. | IMenuItemRenderer | ||
| measuredIconWidth : Number [tylko do odczytu]
The width of the icon. | IMenuItemRenderer | ||
| measuredTypeIconWidth : Number [tylko do odczytu]
The width of the type icon (radio/check). | IMenuItemRenderer | ||
| menu : Menu
A reference to this menu item renderer's Menu control,
if it contains one. | IMenuItemRenderer | ||
measuredBranchIconWidth | właściwość |
measuredIconWidth | właściwość |
measuredTypeIconWidth | właściwość |
menu | właściwość |
menu:Menu| Wersja języka: | ActionScript 3.0 |
| Wersja produktu: | Flex 3 |
| Wersje środowiska wykonawczego: | Flash Player 9, AIR 1.1 |
A reference to this menu item renderer's Menu control, if it contains one. This indicates that this menu item renderer is a branch node, capable of popping up a sub menu.
Implementacja
public function get menu():Menu public function set menu(value:Menu):voidTue Jun 12 2018, 12:06 PM Z