Resets the specified property to the default setting (not set).
Syntax
Parameters
- prop
- Sheet style property to reset
Example
This example resets the background color to its default setting.
C# | Copy Code |
---|
FarPoint.Web.Spread.NamedStyle parent = new FarPoint.Web.Spread.NamedStyle("StyleHeaders", "HeaderDefault");
parent.BackColor = Color.Yellow;
FpSpread1.NamedStyles.Add(parent);
FpSpread1.ActiveSheetView.ColumnHeader.DefaultStyle = parent;
FpSpread1.ActiveSheetView.RowHeader.DefaultStyle = parent;
if (IsPostBack)
{
parent.Reset(FarPoint.Web.Spread.SheetStyleProperty.BackColor);
}
|
Visual Basic | Copy Code |
---|
Dim parent As New FarPoint.Web.Spread.NamedStyle("StyleHeaders", "HeaderDefault")
parent.BackColor = Color.Yellow
FpSpread1.NamedStyles.Add(parent)
FpSpread1.ActiveSheetView.ColumnHeader.DefaultStyle = parent
FpSpread1.ActiveSheetView.RowHeader.DefaultStyle = parent
If IsPostBack Then
parent.Reset(FarPoint.Web.Spread.SheetStyleProperty.BackColor)
End If |
Requirements
Target Platforms: Windows 98, Windows NT 4.0, Windows Millennium Edition, Windows 2000, Windows XP Home Edition, Windows XP Professional, Windows Server 2003 family, Windows Vista, Windows Server 2008 family
See Also