This topic has not yet been rated - Rate this topic

DataGridViewLinkColumn.TrackVisitedState Property

Gets or sets a value indicating whether the link changes color if it has been visited.

Namespace:  System.Windows.Forms
Assembly:  System.Windows.Forms (in System.Windows.Forms.dll)
public bool TrackVisitedState { get; set; }

Property Value

Type: System.Boolean
true if the link changes color when it is selected; otherwise, false. The default is true.
ExceptionCondition
InvalidOperationException

The value of the CellTemplate property is null.

When TrackVisitedState is true, the VisitedLinkColor property value is used to display links that have already been visited.

Getting or setting this property gets or sets the TrackVisitedState property of the object returned by the CellTemplate property. Setting this property also sets the TrackVisitedState 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 so that the link changes color when it is selected. This example is part of a larger example available in the DataGridViewComboBoxColumn class overview topic.

private void AddLinkColumn()
{
    DataGridViewLinkColumn links = new 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);
}

.NET Framework

Supported in: 4.5, 4, 3.5, 3.0, 2.0

.NET Framework Client Profile

Supported in: 4, 3.5 SP1

Windows 8, Windows Server 2012, Windows 7, Windows Vista SP2, Windows Server 2008 (Server Core Role not supported), Windows Server 2008 R2 (Server Core Role supported with SP1 or later; Itanium not supported)

The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.

Did you find this helpful?
(1500 characters remaining)
© 2013 Microsoft. All rights reserved.