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

DocumentCheckAction(Func<Boolean>, Action<Document>) Constructor

Initializes a new instance of the DocumentCheckAction class with the specified settings.

Namespace: DevExpress.XtraBars.Docking2010.Views.WindowsUI

Assembly: DevExpress.XtraBars.v19.2.dll

Declaration

public DocumentCheckAction(
    Func<bool> getState,
    Action<Document> toggle
)

Parameters

Name Type Description
getState Func<Boolean>

A Func delegate that returns the boolean value related to the current DocumentCheckAction‘s checked state.

toggle Action<Document>

An Action delegate that encapsulates a method executed whenever the DocumentCheckAction‘s checked state changes.

See Also