DataGridViewAdvancedBorderStyle.Left 屬性

定義

取得儲存格左框線的樣式。

public:
 property System::Windows::Forms::DataGridViewAdvancedCellBorderStyle Left { System::Windows::Forms::DataGridViewAdvancedCellBorderStyle get(); void set(System::Windows::Forms::DataGridViewAdvancedCellBorderStyle value); };
public System.Windows.Forms.DataGridViewAdvancedCellBorderStyle Left { get; set; }
member this.Left : System.Windows.Forms.DataGridViewAdvancedCellBorderStyle with get, set
Public Property Left As DataGridViewAdvancedCellBorderStyle

屬性值

DataGridViewAdvancedCellBorderStyle

其中一個 DataGridViewAdvancedCellBorderStyle 值。

例外狀況

在設定這個屬性時所指定的值並非有效的 DataGridViewAdvancedCellBorderStyle

設定這個屬性時所指定的值是 NotSet

-或- 在設定這個屬性時所指定的值為 InsetDoubleOutsetDouble,而且這個 DataGridViewAdvancedBorderStyle 執行個體具有關聯的 DataGridView 控制項,其 RightToLeft 屬性值為 true

範例

下列程式碼範例說明如何使用這個屬性。 此範例是類別概觀中較大範例的 DataGridViewAdvancedBorderStyle 一部分。

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

適用於