DataGridViewHelper GetFilteredValues Method (DataGridView, Int32)CleanCode C# Libraries v1.2.03 API
Get values from a OnlineDataGridView column (selected by index) from the set of rows meeting the current BindingSource filter.

Namespace: CleanCode.Forms
Assembly: CleanCode (in CleanCode.dll) Version: 1.2.3.0 (1.2.03)
Syntax

public static List<string> GetFilteredValues(
	DataGridView dataGridView,
	int columnIndex
)

Return Value

List of values in the specified column.
Remarks

Gets all values in the specified column of a DataGridView that are currently visible, i.e. those meeting the current BindingSource filter.
See Also