DataGridViewColumnCollection::GetLastColumn Method (DataGridViewElementStates, DataGridViewElementStates)
Returns the last column in display order that meets the given filter requirements.
Assembly: System.Windows.Forms (in System.Windows.Forms.dll)
public:
DataGridViewColumn^ GetLastColumn(
DataGridViewElementStates includeFilter,
DataGridViewElementStates excludeFilter
)
Parameters
- includeFilter
-
Type:
System.Windows.Forms::DataGridViewElementStates
A bitwise combination of the DataGridViewElementStates values that represent the filter to apply for inclusion.
- excludeFilter
-
Type:
System.Windows.Forms::DataGridViewElementStates
A bitwise combination of the DataGridViewElementStates values that represent the filter to apply for exclusion.
Return Value
Type: System.Windows.Forms::DataGridViewColumn^The last displayed column in display order that meets the given filter requirements, or null if no column is found.
| Exception | Condition |
|---|---|
| ArgumentException | At least one of the filter values is not a valid bitwise combination of DataGridViewElementStates values. |
The last column in display order is the column with the highest DisplayIndex value, regardless of whether the column is actually visible on the screen.
This method lets you determine the last column that fits the given criteria without having to compare index values directly.
The following code example uses the GetLastColumn method to swap the last displayed column and the first displayed column.
// Swap the last column with the first. void Button10_Click( Object^ /*sender*/, EventArgs^ /*args*/ ) { DataGridViewColumnCollection^ columnCollection = dataGridView->Columns; DataGridViewColumn^ firstDisplayedColumn = columnCollection->GetFirstColumn( DataGridViewElementStates::Visible ); DataGridViewColumn^ lastDisplayedColumn = columnCollection->GetLastColumn( DataGridViewElementStates::Visible, DataGridViewElementStates::None ); int firstColumn_sIndex = firstDisplayedColumn->DisplayIndex; firstDisplayedColumn->DisplayIndex = lastDisplayedColumn->DisplayIndex; lastDisplayedColumn->DisplayIndex = firstColumn_sIndex; }
Available since 2.0