Skip to main content
A newer version of this page is available. .

DashboardToolbarMenuItem(Nullable<Boolean>, String, Action<DashboardToolbarItemClickEventArgs>) Constructor

Initializes a new instance of the DashboardToolbarMenuItem class with the specified checked state, caption and click action.

Namespace: DevExpress.DashboardWin

Assembly: DevExpress.Dashboard.v18.2.Win.dll

Declaration

public DashboardToolbarMenuItem(
    bool? isChecked,
    string caption,
    Action<DashboardToolbarItemClickEventArgs> clickAction
)

Parameters

Name Type Description
isChecked Nullable<Boolean>

True, to create a button in a checked state; otherwise, false.

caption String

A String that is the menu item caption text.

clickAction Action<DashboardToolbarItemClickEventArgs>

A Action delegate method that specifies an action performed after clicking the menu item.

See Also