ColumnStyle.Width Property

Definition

Gets or sets the width value for a column.

public:
 property float Width { float get(); void set(float value); };
public float Width { get; set; }
member this.Width : single with get, set
Public Property Width As Single

Property Value

The preferred width, in pixels or percentage, depending on the SizeType property.

Exceptions

The value is less than 0 when setting this property.

Remarks

The width parameter will take on different meanings depending on the SizeType property.

sizeType value width interpretation
Absolute The preferred column width in pixels (fractional portion ignored).
AutoSize Not applicable - the width parameter is ignored.
Percent The preferred column width as a percentage of the containing table.

Applies to

See also