Skip to main content
All docs
V26.1
  • BaseListBoxControl.BindCommand(Object, String, Func<Object>) Method

    Binds the specific parameterized command to the target HTML element.

    Namespace: DevExpress.XtraEditors

    Assembly: DevExpress.XtraEditors.v26.1.dll

    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