BaseListBoxControl.BindCommand(Object, String, Func<Object>) Method
In This Article
Binds the specific parameterized command to the target HTML element.
Namespace: DevExpress.XtraEditors
Assembly: DevExpress.XtraEditors.v24.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. |
element |
String | The ID of the HTML element to which the target command should be bound. |
query |
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