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

MultiQueryItem(String, Nullable<Boolean>, Int32, Int32, MultiQueryItemActions) Constructor

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

Namespace: DevExpress.DataAccess.Wizard.Presenters

Assembly: DevExpress.DataAccess.v18.2.dll

Declaration

public MultiQueryItem(
    string name,
    bool? selected,
    int id,
    int parentId,
    MultiQueryItemActions actions
)

Parameters

Name Type Description
name String

A String value, specifying the item name. This value is assigned to the MultiQueryItem.Name property.

selected Nullable<Boolean>

A nullable Boolean value, specifying the item’s check state. This value is assigned to the MultiQueryItem.Selected property.

id Int32

An integer value, identifying the item. This value is assigned to the MultiQueryItem.Id property.

parentId Int32

An integer value, identifying the item’s parent in the tree list hierarchy. This value is assigned to the MultiQueryItem.ParentId property.

actions MultiQueryItemActions

A MultiQueryItemActions enumeration value, specifying the actions allowed for this item. This value is assigned to the MultiQueryItem.Actions property.

See Also