DataGridColumnStyle.Width 属性

定义

获取或设置列的宽度。

public:
 virtual property int Width { int get(); void set(int value); };
public virtual int Width { get; set; }
member this.Width : int with get, set
Public Overridable Property Width As Integer

属性值

Int32

列的宽度(以像素为单位)。

示例

下面的代码示例将 a DataGridColumnStyle 的宽度设置为新值。


Private Sub SetWidth()
   Dim dgc As DataGridColumnStyle
   dgc = DataGrid1.TableStyles(0).GridColumnStyles("id")
   dgc.Width = 500
End Sub

适用于

另请参阅