This documentation is archived and is not being maintained.
TableCell.RowSpan Property
.NET Framework 1.1
Gets or sets the number of rows in the Table control that the cell spans.
[Visual Basic] Public Overridable Property RowSpan As Integer [C#] public virtual int RowSpan {get; set;} [C++] public: __property virtual int get_RowSpan(); public: __property virtual void set_RowSpan(int); [JScript] public function get RowSpan() : int; public function set RowSpan(int);
Property Value
The number of rows in the rendered table that the cell spans. The default value is 0, which indicates that this property is not set.
Remarks
Use the RowSpan property to specify or determine the number of rows in the rendered table that the cell spans. For example, if you set this property to 2, the cell takes up two rows in the Table control.
Requirements
Platforms: Windows 2000, Windows XP Professional, Windows Server 2003 family
See Also
TableCell Class | TableCell Members | System.Web.UI.WebControls Namespace | ColumnSpan | Table
Show: