DataGridViewAdvancedBorderStyle.Top 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 the style for the top border of a cell.
public:
property System::Windows::Forms::DataGridViewAdvancedCellBorderStyle Top { System::Windows::Forms::DataGridViewAdvancedCellBorderStyle get(); void set(System::Windows::Forms::DataGridViewAdvancedCellBorderStyle value); };
public System.Windows.Forms.DataGridViewAdvancedCellBorderStyle Top { get; set; }
member this.Top : System.Windows.Forms.DataGridViewAdvancedCellBorderStyle with get, set
Public Property Top As DataGridViewAdvancedCellBorderStyle
Property Value
One of the DataGridViewAdvancedCellBorderStyle values.
Exceptions
The specified value when setting this property is not a valid DataGridViewAdvancedCellBorderStyle.
The specified value when setting this property is NotSet.
Examples
The following code example illustrates the use of this property. This example is part of a larger example available in the DataGridViewAdvancedBorderStyle class overview.
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;
}
}
Public Overrides ReadOnly Property AdjustedTopLeftHeaderBorderStyle() _
As DataGridViewAdvancedBorderStyle
Get
Dim newStyle As New DataGridViewAdvancedBorderStyle()
With newStyle
.Top = DataGridViewAdvancedCellBorderStyle.None
.Left = DataGridViewAdvancedCellBorderStyle.None
.Bottom = DataGridViewAdvancedCellBorderStyle.Outset
.Right = DataGridViewAdvancedCellBorderStyle.OutsetDouble
End With
Return newStyle
End Get
End Property