TableCell.ColumnSpan Property

Definition

Gets or sets the number of columns in the Table control that the cell spans.

C#
[System.ComponentModel.Bindable(true)]
public virtual int ColumnSpan { get; set; }
C#
public virtual int ColumnSpan { get; set; }

Property Value

The number of columns in the rendered table that the cell spans. The default value is 0, which indicates that this property is not set.

Attributes

Exceptions

The selected value is less than 0.

Examples

The following code example demonstrates how to declaratively specify the ColumnSpan of a TableCell control. In particular, note how the last row's single cell spans three columns. For a complete, working code example, see the TableHeaderCell class overview topic.

C#
<asp:TableCell AssociatedHeaderCellID="Column1Header Column2Header Column3Header"  
ColumnSpan="3"  
HorizontalAlign="Left">(2,0)  
</asp:TableCell>  

Remarks

Use the ColumnSpan property to specify or determine the number of columns in the rendered table that the cell spans. For example, if you set this property to 2, the cell takes up two columns in the Table control.

Applies to

Produkt Verzie
.NET Framework 1.1, 2.0, 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1

See also