Spread for ASP.NET 7.0 Product Documentation
Reset(SheetStyleProperty) Method
See Also  Example Support Options
FarPoint.Web.Spread Assembly > FarPoint.Web.Spread Namespace > NamedStyle Class > Reset Method : Reset(SheetStyleProperty) Method


prop
Sheet style property to reset

Glossary Item Box

Resets the specified property to the default setting (not set).

Syntax

Visual Basic (Declaration) 
Public Overloads Overrides Sub Reset( _
   ByVal prop As SheetStyleProperty _
) 
Visual Basic (Usage)Copy Code
Dim instance As NamedStyle
Dim prop As SheetStyleProperty
 
instance.Reset(prop)
C# 
public override void Reset( 
   SheetStyleProperty prop
)

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 BasicCopy 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 7, Windows 8, Windows Vista, Windows Server 2000, Windows 2000 Professional, Windows XP Professional, Windows NT 4.0 Workstation, SP6, Windows NT 4.0 Server, SP6

See Also

© 2002-2014 ComponentOne, a division of GrapeCity. All Rights Reserved.