Skip to main content
All docs
V23.2

BaseListBoxControl.BindCommand(Object, String, Func<Object>) Method

Binds the specific parameterized command to the target HTML element.

Namespace: DevExpress.XtraEditors

Assembly: DevExpress.XtraEditors.v23.2.dll

NuGet Package: DevExpress.Win.Navigation

Declaration

public IDisposable BindCommand(
    object command,
    string elementId,
    Func<object> queryCommandParameter
)

Parameters

Name Type Description
command Object

An Object that is the command to be bound to this HTML element.

elementId String

The ID of the HTML element to which the target command should be bound.

queryCommandParameter Func<Object>

A Func delegate that passes the specific Object to the command as a parameter.

Returns

Type Description
IDisposable

An IDisposable object. Disposing of this object unbinds the command from its target HTML element.

See Also