DataGridViewLinkColumn::LinkBehavior Property
Gets or sets a value that represents the behavior of links within cells in the column.
Assembly: System.Windows.Forms (in System.Windows.Forms.dll)
public: property LinkBehavior LinkBehavior { LinkBehavior get(); void set(LinkBehavior value); }
Property Value
Type: System.Windows.Forms::LinkBehaviorA LinkBehavior value indicating the link behavior. The default is SystemDefault.
| Exception | Condition |
|---|---|
| InvalidOperationException | The value of the CellTemplate property is null. |
Getting or setting this property gets or sets the LinkBehavior property of the object returned by the CellTemplate property. Setting this property also sets the LinkBehavior property of every cell in the column and refreshes the column display. To override the specified value for individual cells, set the cell values after you set the column value.
The following code example initializes this property to SystemDefault, which lets the operating system choose how the link will display. This example is part of a larger example available in the DataGridViewComboBoxColumn class overview topic.
private: void AddLinkColumn() { DataGridViewLinkColumn^ links = gcnew DataGridViewLinkColumn(); links->UseColumnTextForLinkValue = true; links->HeaderText = ColumnName::ReportsTo.ToString(); links->DataPropertyName = ColumnName::ReportsTo.ToString(); links->ActiveLinkColor = Color::White; links->LinkBehavior = LinkBehavior::SystemDefault; links->LinkColor = Color::Blue; links->TrackVisitedState = true; links->VisitedLinkColor = Color::YellowGreen; DataGridView1->Columns->Add(links); }
Available since 2.0