TableCell.RowSpan Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Gets or sets the number of rows in the Table control that the cell spans.
public:
virtual property int RowSpan { int get(); void set(int value); };
[System.ComponentModel.Bindable(true)]
public virtual int RowSpan { get; set; }
public virtual int RowSpan { get; set; }
[<System.ComponentModel.Bindable(true)>]
member this.RowSpan : int with get, set
member this.RowSpan : int with get, set
Public Overridable Property RowSpan As Integer
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.
- Attributes
Exceptions
The selected value is less than 0
.
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.