Spread Windows Forms 7.0 Product Documentation
ResetBackColor Method
See Also  Example Support Options
FarPoint.Win.Spread Assembly > FarPoint.Win.Spread Namespace > PreviewRowInfo Class : ResetBackColor Method


Glossary Item Box

Resets the BackColor property to its default value.

Syntax

Visual Basic (Declaration) 
Public Sub ResetBackColor() 
Visual Basic (Usage)Copy Code
Dim instance As PreviewRowInfo
 
instance.ResetBackColor()
C# 
public void ResetBackColor()

Example

This example uses the ResetBackColor method.
C#Copy Code
FarPoint.Win.BevelBorder bord = new FarPoint.Win.BevelBorder(FarPoint.Win.BevelBorderType.Raised, Color.Red, Color.Blue);
fpSpread1.Sheets[0].Cells[0, 1, 10, 1].Text = "Preview Row";
FarPoint.Win.Spread.PreviewRowInfo preview = new FarPoint.Win.Spread.PreviewRowInfo();
preview.BackColor = Color.BurlyWood;
preview.Visible = true;
preview.Border = bord;
preview.ForeColor = Color.Black;
preview.Font = new System.Drawing.Font("Arial", 12);
preview.Height = 30;
preview.HorizontalAlignment = FarPoint.Win.HorizontalAlignment.Left;
preview.VerticalAlignment = FarPoint.Win.VerticalAlignment.Center;
fpSpread1.Sheets[0].PreviewRowInfo = preview;
//preview.ResetBackColor();
//preview.ResetBorder();
//preview.ResetFont();
//preview.ResetForeColor();
//preview.ResetHeight();
//preview.ResetHorizontalAlignment();
//preview.ResetVerticalAlignment();
VB.NETCopy Code
Dim bord As New FarPoint.Win.BevelBorder(FarPoint.Win.BevelBorderType.Raised, Color.Red, Color.Blue)
FpSpread1.Sheets(0).Cells(0, 1, 10, 1).Text = "Preview Row"
Dim preview As New FarPoint.Win.Spread.PreviewRowInfo()
preview.BackColor = Color.BurlyWood
preview.Visible = True
preview.Border = bord
preview.ForeColor = Color.Black
preview.Font = New System.Drawing.Font("Arial", 12)
preview.Height = 30
preview.HorizontalAlignment = FarPoint.Win.HorizontalAlignment.Left
preview.VerticalAlignment = FarPoint.Win.VerticalAlignment.Center
FpSpread1.Sheets(0).PreviewRowInfo = preview
'preview.ResetBackColor()
'preview.ResetBorder()
'preview.ResetFont()
'preview.ResetForeColor()
'preview.ResetHeight()
'preview.ResetHorizontalAlignment()
'preview.ResetVerticalAlignment()

Requirements

Target Platforms: Windows 2000 Professional (SP4), Windows 2000 Server, Windows 2003 Server (SP1), Windows 2008, Windows XP (SP2), Windows Vista, Windows 7, Windows 8

See Also

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