Skip to main content

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.

public interface ISalAccessory

Example:

void EnableToolbar(PPJ.Runtime.Windows.ISalAccessory accessory)
{
if (accessory.AccessoryType == PPJ.Runtime.Windows.AccessoryType.ToolBar)
accessory.Create = true;
}

Properties

Instance member AccessoryType

AccessoryType: Gets the role that this accessory performs in its form.

Instance member Create

Boolean: Gets or sets whether the form should create this accessory at runtime.

Implemented By

NameDescription
SalRibbonStatusBarDisplays SAL status text and keyboard-lock indicators on a ribbon form.
SalFormClientAreaProvides the scrollable client panel of a SAL form and forwards child notifications to the form.
SalFormStatusBarDisplays SAL status text and keyboard-lock panels on a form.
SalFormToolBarProvides a docked panel for SAL form toolbar controls.
SalFormMainMenuProvides a form main menu with SAL shortcut dispatch and MDI menu replacement.
XSalToolbar