ISalMenu
Namespace: PPJ.Runtime.Windows
Assembly: PPJ.Web.50 (5.0.0.0)
Exposes menu refresh, status text, and the owning control for SAL menus.
- C#
- VB.NET
public interface ISalMenu
Public Interface ISalMenu
Example:
void Refresh(PPJ.Runtime.Windows.ISalMenu menu)
{
menu.StatusText = "Open the selected document";
menu.Update();
}
Properties
Owner
Control: Gets the control that supplies the menu's application context.
StatusText
String: Gets or sets the status-bar text displayed when this menu item is highlighted.
Methods
Update()
Refreshes this menu and its descendant menu items recursively.
Implemented By
| Name | Description |
|---|---|
| SalMenuItem | A SAL command item with action, enabled-state, and checked-state callbacks. |
| SalPopupMenu | A SAL popup-menu branch with dynamic enabled-state evaluation. |
| SalWindowsMenu | A SAL MDI window-list menu with a generated initialization hook. |