DataGridViewAdvancedBorderStyle.Right 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 right border of a cell.
public:
property System::Windows::Forms::DataGridViewAdvancedCellBorderStyle Right { System::Windows::Forms::DataGridViewAdvancedCellBorderStyle get(); void set(System::Windows::Forms::DataGridViewAdvancedCellBorderStyle value); };
public System.Windows.Forms.DataGridViewAdvancedCellBorderStyle Right { get; set; }
member this.Right : System.Windows.Forms.DataGridViewAdvancedCellBorderStyle with get, set
Public Property Right 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.
-or-
The specified value when setting this property is InsetDouble or OutsetDouble and this DataGridViewAdvancedBorderStyle instance has an associated DataGridView control with a RightToLeft property value of false
.
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
Applies to
.NET