Spread Windows Forms 12.0 Product Documentation
ParentStyleName Property (AlternatingRow)
Example 


FarPoint.Win.Spread Assembly > FarPoint.Win.Spread Namespace > AlternatingRow Class : ParentStyleName Property
Gets or sets the name of the parent style from which style properties are inherited for cells in this alternating row.
Syntax
'Declaration
 
Public Property ParentStyleName As String
'Usage
 
Dim instance As AlternatingRow
Dim value As String
 
instance.ParentStyleName = value
 
value = instance.ParentStyleName
public string ParentStyleName {get; set;}

Property Value

String containing the name of the parent style
Remarks

To create alternating rows, first set the AlternatingRows.Count property to specify the number of alternating row patterns, then set the properties for each pattern.

This property gets or sets the name of the parent style (NamedStyle object) as a string.

Example
This example illustrates the use of this member by returning the ParentStyleName of the alternating row.
FarPoint.Win.Spread.AlternatingRow altrow;
altrow = fpSpread1.ActiveSheet.AlternatingRows[0];
altrow.ParentStyleName = "DataAreaDefault";
Dim altrow As FarPoint.Win.Spread.AlternatingRow
altrow = fpSpread1.ActiveSheet.AlternatingRows(0)
altrow.ParentStyleName = "DataAreaDefault"
See Also

Reference

AlternatingRow Class
AlternatingRow Members

User-Task Documentation

Creating Alternating Rows