DataGridView.AdjustedTopLeftHeaderBorderStyle Property

Definition

Gets the border style for the upper-left cell in the DataGridView.

C#
[System.ComponentModel.Browsable(false)]
public virtual System.Windows.Forms.DataGridViewAdvancedBorderStyle AdjustedTopLeftHeaderBorderStyle { get; }

Property Value

A DataGridViewAdvancedBorderStyle that represents the style of the border of the upper-left cell in the DataGridView.

Attributes

Examples

The following code example demonstrates how to override the AdjustedTopLeftHeaderBorderStyle property to customize the borders of the upper-left cell. This code example is part of a larger example provided for the DataGridViewAdvancedBorderStyle class.

C#
public override DataGridViewAdvancedBorderStyle AdjustedTopLeftHeaderBorderStyle
{
    get
    {
        DataGridViewAdvancedBorderStyle newStyle =
            new DataGridViewAdvancedBorderStyle();
        newStyle.Top = DataGridViewAdvancedCellBorderStyle.None;
        newStyle.Left = DataGridViewAdvancedCellBorderStyle.None;
        newStyle.Bottom = DataGridViewAdvancedCellBorderStyle.Outset;
        newStyle.Right = DataGridViewAdvancedCellBorderStyle.OutsetDouble;
        return newStyle;
    }
}

Remarks

The upper-left cell is the cell that is shared by the column header row and the row header column. The DataGridView gets the value of this property while painting the upper-left cell.

Notes to Inheritors

Override this property if you want to customize the appearance of the border on the upper-left header cell.

Applies to

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, 10

See also