Skip to main content

CheckBoxListExtension.GetSelectedValues<T>(String) Method

Returns an array of the CheckBoxList’s selected item values.

Namespace: DevExpress.Web.Mvc

Assembly: DevExpress.Web.Mvc5.v23.2.dll

NuGet Package: DevExpress.Web.Mvc5

Declaration

public static T[] GetSelectedValues<T>(
    string name
)

Parameters

Name Type Description
name String

A string specifying the editor name.

Type Parameters

Name
T

Returns

Type Description
T[]

An array that contains zero or more T[] objects that are the values of the selected items.

Remarks

Use the GetSelectedValues<T> method to obtain an array of values of the selected items within a CheckBoxList.

See Also