Menu.DynamicEnableDefaultPopOutImage Property
Assembly: System.Web (in system.web.dll)
public: property bool DynamicEnableDefaultPopOutImage { bool get (); void set (bool value); }
/** @property */ public boolean get_DynamicEnableDefaultPopOutImage () /** @property */ public void set_DynamicEnableDefaultPopOutImage (boolean value)
public function get DynamicEnableDefaultPopOutImage () : boolean public function set DynamicEnableDefaultPopOutImage (value : boolean)
Not applicable.
Property Value
true to display the built-in image for dynamic menu items with submenus; otherwise, false. The default is true.When a dynamic menu item contains a submenu, an image can be displayed to indicate that the user can expand the menu by positioning the mouse pointer over the menu item. There are two ways to display this image:
-
Set the DynamicEnableDefaultPopOutImage property to true to use the built-in image (default).
-
Set the DynamicPopOutImageUrl property to specify a custom image.
If the DynamicPopOutImageUrl property is set, that image overrides the built-in image.
Note: |
|---|
| If the DynamicPopOutImageUrl property is not set and the DynamicEnableDefaultPopOutImage property is set to false, no image is displayed. |
You can specify alternate text for the image by setting the DynamicPopOutImageTextFormatString property. This text is displayed as a ToolTip when the user positions the mouse pointer over the image. This text also provides assistive technology devices with a description of the image that can be used to make the control more accessible.
Note: