共用方式為


DataGridViewBand.Resizable 屬性

定義

取得或設定值,指出群組列是否可以在使用者介面 (UI) 中調整大小。

public:
 virtual property System::Windows::Forms::DataGridViewTriState Resizable { System::Windows::Forms::DataGridViewTriState get(); void set(System::Windows::Forms::DataGridViewTriState value); };
[System.ComponentModel.Browsable(true)]
public virtual System.Windows.Forms.DataGridViewTriState Resizable { get; set; }
[<System.ComponentModel.Browsable(true)>]
member this.Resizable : System.Windows.Forms.DataGridViewTriState with get, set
Public Overridable Property Resizable As DataGridViewTriState

屬性值

DataGridViewTriState

其中一個 DataGridViewTriState 值。 預設為 True

屬性

範例

下列程式碼範例會將 Resizable 屬性設定為預設值。

dataGridView1->Columns[ 2 ]->Resizable = DataGridViewTriState::NotSet;
dataGridView1.Columns[2].Resizable =
    DataGridViewTriState.NotSet;
DataGridView1.Columns(2).Resizable = _
    DataGridViewTriState.NotSet

備註

您可以藉由設定其 Resizable 屬性,防止使用者調整個別資料列或資料行的大小。 根據預設, Resizable 屬性值是以資料行的屬性值和資料 AllowUserToResizeRows 列的屬性值為基礎 AllowUserToResizeColumns 。 不過,如果您明確設定 ResizableTrueFalse ,則會忽略控制項值。 設定 ResizableNotSet 以還原繼承。

因為 NotSet 會還原值繼承, Resizable 除非資料列或資料行尚未加入 DataGridView 控制項,否則屬性永遠不會傳回 NotSet 值。 如果您需要判斷是否 Resizable 繼承資料列或資料行的屬性值,請檢查其 State 屬性。 State如果值包含 ResizableSet 旗標, Resizable 則不會繼承屬性值。 Resizable如果屬性值為 False ,使用者將無法手動調整帶狀大小。

適用於

另請參閱