Spread Windows Forms 6.0 Product Documentation
Appearance Constructor(Color,Color,Font,CellHorizontalAlignment,CellVerticalAlignment,Boolean,Boolean,Color,Color,Color,Color)
See Also  Example Support Options
FarPoint.Win.Spread Assembly > FarPoint.Win.Spread Namespace > Appearance Class > Appearance Constructor : Appearance Constructor(Color,Color,Font,CellHorizontalAlignment,CellVerticalAlignment,Boolean,Boolean,Color,Color,Color,Color)


backColor
Background color of an object
foreColor
Foreground (text) color of an object
font
Font information of an object
horizontalAlignment
Horizontal alignment of an object or of text in a cell
verticalAlignment
Vertical alignment of an object or text in a cell
drawPrimaryButton
Whether to draw the primary button for an object
drawSecondaryButton
Whether to draw the secondary button for an object
selectionBackColor
Background color of an object when the object is selected
selectionForeColor
Foreground (text) color of an object when the object is selected
lockBackColor
Background color of an object when the cell is locked
lockForeColor
Foreground (text) color of an object when the cell is locked

Glossary Item Box

Creates a set of appearance settings with the specified colors, buttons, and alignment.

Syntax

Visual Basic (Declaration) 
Public Function New( _
   ByVal backColor As Color, _
   ByVal foreColor As Color, _
   ByVal font As Font, _
   ByVal horizontalAlignment As CellHorizontalAlignment, _
   ByVal verticalAlignment As CellVerticalAlignment, _
   ByVal drawPrimaryButton As Boolean, _
   ByVal drawSecondaryButton As Boolean, _
   ByVal selectionBackColor As Color, _
   ByVal selectionForeColor As Color, _
   ByVal lockBackColor As Color, _
   ByVal lockForeColor As Color _
)
Visual Basic (Usage)Copy Code
Dim backColor As Color
Dim foreColor As Color
Dim font As Font
Dim horizontalAlignment As CellHorizontalAlignment
Dim verticalAlignment As CellVerticalAlignment
Dim drawPrimaryButton As Boolean
Dim drawSecondaryButton As Boolean
Dim selectionBackColor As Color
Dim selectionForeColor As Color
Dim lockBackColor As Color
Dim lockForeColor As Color
 
Dim instance As New Appearance(backColor, foreColor, font, horizontalAlignment, verticalAlignment, drawPrimaryButton, drawSecondaryButton, selectionBackColor, selectionForeColor, lockBackColor, lockForeColor)

Parameters

backColor
Background color of an object
foreColor
Foreground (text) color of an object
font
Font information of an object
horizontalAlignment
Horizontal alignment of an object or of text in a cell
verticalAlignment
Vertical alignment of an object or text in a cell
drawPrimaryButton
Whether to draw the primary button for an object
drawSecondaryButton
Whether to draw the secondary button for an object
selectionBackColor
Background color of an object when the object is selected
selectionForeColor
Foreground (text) color of an object when the object is selected
lockBackColor
Background color of an object when the cell is locked
lockForeColor
Foreground (text) color of an object when the cell is locked

Remarks

Initializes an instance of the Appearance class and constructs an Appearance object.

Example

This example uses an Appearance object to set up the behavior for a StyleInfo object.
C#Copy Code
FarPoint.Win.Spread.Appearance appr = new FarPoint.Win.Spread.Appearance(Color.Yellow, Color.Red, new Font("Comic Sans MS",
10), FarPoint.Win.Spread.CellHorizontalAlignment.Right, FarPoint.Win.Spread.CellVerticalAlignment.Bottom, false, false, Color.Teal,
Color.DarkBlue, Color.Black, Color.White);
FarPoint.Win.Spread.StyleInfo si = new FarPoint.Win.Spread.StyleInfo();
si.SetAppearance(appr);
fpSpread1.ActiveSheet.SetStyleInfo(0, 0, si);
Visual BasicCopy Code
Dim appr As New FarPoint.Win.Spread.Appearance(Color.Yellow, Color.Red, New Font("Comic Sans MS", 10), FarPoint.Win.Spread.CellHorizontalAlignment.Right,
FarPoint.Win.Spread.CellVerticalAlignment.Bottom, False, False, Color.Teal, Color.DarkBlue, Color.Black, Color.White)
Dim si As New FarPoint.Win.Spread.StyleInfo
si.SetAppearance(appr)
FpSpread1.ActiveSheet.SetStyleInfo(0, 0, si)

Requirements

Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also

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