Udostępnij za pośrednictwem


DataGrid.PreferredColumnWidth Właściwość

Definicja

Pobiera lub ustawia domyślną szerokość kolumn siatki w pikselach.

public:
 property int PreferredColumnWidth { int get(); void set(int value); };
[System.ComponentModel.TypeConverter(typeof(System.Windows.Forms.DataGridPreferredColumnWidthTypeConverter))]
public int PreferredColumnWidth { get; set; }
[<System.ComponentModel.TypeConverter(typeof(System.Windows.Forms.DataGridPreferredColumnWidthTypeConverter))>]
member this.PreferredColumnWidth : int with get, set
Public Property PreferredColumnWidth As Integer

Wartość właściwości

Int32

Domyślna szerokość (w pikselach) kolumn w siatce.

Atrybuty

Wyjątki

Wartość właściwości jest mniejsza niż 0.

Przykłady

Poniższy przykład kodu ustawia domyślne szerokości kolumn na wartość przekazaną do metody.

Private Sub SetDefaultColWidth(defColWidth As Integer)
    DataGrid1.PreferredColumnWidth = defColWidth
 End Sub

Uwagi

Ustaw tę właściwość przed zresetowaniem DataSource właściwości i DataMember (oddzielnie lub za pomocą SetDataBinding metody), albo właściwość nie będzie miała wpływu.

Nie można ustawić właściwości na wartość mniejszą niż 0.

Dotyczy

Zobacz też