ISalAccessory
Namespace: PPJ.Runtime.Windows
Assembly: PPJ.Runtime.50 (5.0.0.0)
Provides the runtime creation setting and role of a SAL form accessory.
- C#
- VB.NET
public interface ISalAccessory
Public Interface ISalAccessory
Example:
void EnableToolbar(PPJ.Runtime.Windows.ISalAccessory accessory)
{
if (accessory.AccessoryType == PPJ.Runtime.Windows.AccessoryType.ToolBar)
accessory.Create = true;
}
Properties
AccessoryType
AccessoryType: Gets the role that this accessory performs in its form.
Create
Boolean: Gets or sets whether the form should create this accessory at runtime.
Implemented By
| Name | Description |
|---|---|
| SalRibbonStatusBar | Displays SAL status text and keyboard-lock indicators on a ribbon form. |
| SalFormClientArea | Provides the scrollable client panel of a SAL form and forwards child notifications to the form. |
| SalFormStatusBar | Displays SAL status text and keyboard-lock panels on a form. |
| SalFormToolBar | Provides a docked panel for SAL form toolbar controls. |
| SalFormMainMenu | Provides a form main menu with SAL shortcut dispatch and MDI menu replacement. |
| XSalToolbar |