Gets the alternating rows information for the row header.
            
            
            
 Syntax
Syntax
| Visual Basic (Declaration) |  | 
|---|
| Public ReadOnly Property AlternatingRows As AlternatingRows | 
Property Value
AlternatingRows object containing the collection of alternating rows in the header
Remarks
            
             Example
Example
This example illustrates the use of this member by returning the number of alternating rows in the row header.
             
| Visual Basic |  Copy Code | 
|---|
| Dim r As FarPoint.Win.Spread.RowHeader
r = FpSpread1.ActiveSheet.RowHeader
r.ColumnCount = 4
ListBox1.Items.Add(r.AlternatingRows.Count.ToString()) | 
| C# |  Copy Code | 
|---|
| FarPoint.Win.Spread.RowHeader r;
r = fpSpread1.ActiveSheet.RowHeader;
r.ColumnCount = 4; 
listBox1.Items.Add(r.AlternatingRows.Count.ToString()); | 
 Requirements
Requirements
Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2
 See Also
See Also