Spread for ASP.NET 11 Product Documentation
ParentStyleName Property (Row)
Example 


FarPoint.Web.Spread Assembly > FarPoint.Web.Spread Namespace > Row Class : ParentStyleName Property
Gets or sets the name of the parent style from which style properties are inherited.
Syntax
'Declaration
 
Public Property ParentStyleName As String
'Usage
 
Dim instance As Row
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 for this row
Example
This example sets the parent style.
FarPoint.Web.Spread.NamedStyle ns = new FarPoint.Web.Spread.NamedStyle("StyleData", "HeaderDefault");
FarPoint.Web.Spread.Row r;
r = FpSpread1.ActiveSheetView.Rows[0];
r.Height = 60;
r.ParentStyleName = ns.Parent;
Dim ns As New FarPoint.Web.Spread.NamedStyle("StyleData", "HeaderDefault")
Dim r As FarPoint.Web.Spread.Row
r = FpSpread1.ActiveSheetView.Rows(0)
r.Height = 60
r.ParentStyleName = ns.Parent
See Also

Reference

Row Class
Row Members