Spread for ASP.NET 10 Product Documentation
Parent Property (AlternatingRows)
Example 


Gets the parent object that contains this collection of alternating rows.
Syntax
'Declaration
 
Public ReadOnly Property Parent As Object
'Usage
 
Dim instance As AlternatingRows
Dim value As Object
 
value = instance.Parent
public object Parent {get;}

Property Value

Object containing the parent Rows object containing this AlternatingRows collection
Example
This example creates three alternating rows and uses the Parent property to set the background color of the rows.
FpSpread1.Sheets[0].AlternatingRows.Count = 3;
FpSpread1.Sheets[0].AlternatingRows.Parent[0].BackColor = Color.Red;
FpSpread1.Sheets[0].AlternatingRows.Parent[1].BackColor = Color.Blue;
FpSpread1.Sheets[0].AlternatingRows.Parent[2].BackColor = Color.Green;
FpSpread1.Sheets(0).AlternatingRows.Count = 3
FpSpread1.Sheets(0).AlternatingRows.Parent(0).BackColor = Color.Red
FpSpread1.Sheets(0).AlternatingRows.Parent(1).BackColor = Color.Blue
FpSpread1.Sheets(0).AlternatingRows.Parent(2).BackColor = Color.Green
Requirements

Target Platforms: Windows 7, Windows 8, Windows 10, Windows Vista, Windows Server 2003, Windows Server 2008, Windows Server 2012, Windows XP Professional

See Also

Reference

AlternatingRows Class
AlternatingRows Members
Rows Class

 

 


Copyright © GrapeCity, inc. All rights reserved.