DataGridViewColumn.ToolTipText Property
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Gets or sets the text used for ToolTips.
public:
property System::String ^ ToolTipText { System::String ^ get(); void set(System::String ^ value); };
public string ToolTipText { get; set; }
member this.ToolTipText : string with get, set
Public Property ToolTipText As String
The text to display as a ToolTip for the column.
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.";
}
private void ToolTips()
{
DataGridViewColumn firstColumn = dataGridView.Columns[0];
DataGridViewColumn thirdColumn = dataGridView.Columns[2];
firstColumn.ToolTipText =
"This column uses a default cell.";
thirdColumn.ToolTipText =
"This column uses a template cell." +
" Style changes to one cell apply to all cells.";
}
Private Sub ToolTips()
Dim firstColumn As DataGridViewColumn = _
dataGridView.Columns(0)
Dim thirdColumn As DataGridViewColumn = _
dataGridView.Columns(2)
firstColumn.ToolTipText = _
"This is column uses a default cell."
thirdColumn.ToolTipText = _
"This is column uses a template cell." _
& " Changes to one cell's style changes them all."
End Sub
The column's ToolTip displays when the mouse pointer rests on the column header.
Product | Versions |
---|---|
.NET Framework | 2.0, 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1 |
Windows Desktop | 3.0, 3.1, 5, 6, 7, 8, 9 |
.NET feedback
.NET is an open source project. Select a link to provide feedback: