DataGridViewColumn.ToolTipText Property
Definition
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
Property Value
The text to display as a ToolTip for the column.
Examples
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
Remarks
The column's ToolTip displays when the mouse pointer rests on the column header.
Applies to
See also
التعاون معنا على GitHub
يمكن العثور على مصدر هذا المحتوى على GitHub حيث يمكنك أيضاً إضافة مشاكل وطلبات سحب ومراجعتها. للحصول على معلومات إضافية، اطلع على دليل المساهم لدينا.