DataGridViewColumn::ToolTipText Property
.NET Framework (current version)
Gets or sets the text used for ToolTips.
Assembly: System.Windows.Forms (in System.Windows.Forms.dll)
The column's ToolTip displays when the mouse pointer rests on the column header.
The following code example shows how to set a column's ToolTip. This code example is part of a larger code example provided for the DataGridViewColumn class.
void ToolTips() { DataGridViewColumn^ firstColumn = dataGridView->Columns[ 0 ]; DataGridViewColumn^ thirdColumn = dataGridView->Columns[ 2 ]; firstColumn->ToolTipText = L"This column uses a default cell."; thirdColumn->ToolTipText = L"This column uses a template cell." L" Style changes to one cell apply to all cells."; }
.NET Framework
Available since 2.0
Available since 2.0
Show: