Spread for ASP.NET 7.0 Product Documentation
SpreadFontStyle Constructor(RegularBoldItalicFontStyle,StrikeoutFontStyle,UnderlineFontStyle,OverlineFontStyle)
See Also  Example Support Options
FarPoint.Web.Spread Assembly > FarPoint.Web.Spread Namespace > SpreadFontStyle Class > SpreadFontStyle Constructor : SpreadFontStyle Constructor(RegularBoldItalicFontStyle,StrikeoutFontStyle,UnderlineFontStyle,OverlineFontStyle)


regularBoldItalic
The RegularBoldItalic style.
strikeout
The Strikeout style.
underline
The Underline style.
overline
The Overline style.

Glossary Item Box

Initializes a new instance of the SpreadFontStyle class.

Syntax

Visual Basic (Declaration) 
Public Function New( _
   ByVal regularBoldItalic As RegularBoldItalicFontStyle, _
   ByVal strikeout As StrikeoutFontStyle, _
   ByVal underline As UnderlineFontStyle, _
   ByVal overline As OverlineFontStyle _
)
Visual Basic (Usage)Copy Code
Dim regularBoldItalic As RegularBoldItalicFontStyle
Dim strikeout As StrikeoutFontStyle
Dim underline As UnderlineFontStyle
Dim overline As OverlineFontStyle
 
Dim instance As New SpreadFontStyle(regularBoldItalic, strikeout, underline, overline)

Parameters

regularBoldItalic
The RegularBoldItalic style.
strikeout
The Strikeout style.
underline
The Underline style.
overline
The Overline style.

Example

This example sets the font style for the rule.
C#Copy Code
protected void Page_Load(object sender, EventArgs e)
        {
            if (this.IsPostBack) return;
            FpSpread1.Sheets[0].Cells[0, 0].Value = 3;
            FpSpread1.Sheets[0].Cells[1, 0].Value = 2;
            FpSpread1.Sheets[0].Cells[1, 1].Value = 10;
            FpSpread1.Sheets[0].Cells[0, 2].Value = 1; 
        }

        protected void Button1_Click(object sender, EventArgs e)
        {
            //Unary comparison CF
            FarPoint.Web.Spread.UnaryComparisonConditionalFormattingRule unary = new FarPoint.Web.Spread.UnaryComparisonConditionalFormattingRule(FarPoint.Web.Spread.UnaryComparisonOperator.EqualTo, 10);
            unary.Operator = FarPoint.Web.Spread.UnaryComparisonOperator.EqualTo;
            unary.Value = 10;
            unary.BackColor = System.Drawing.Color.Red;
            unary.FontStyle = new FarPoint.Web.Spread.SpreadFontStyle(FarPoint.Web.Spread.RegularBoldItalicFontStyle.Bold, FarPoint.Web.Spread.StrikeoutFontStyle.None, FarPoint.Web.Spread.UnderlineFontStyle.Underline, FarPoint.Web.Spread.OverlineFontStyle.None);
            FpSpread1.ActiveSheetView.SetConditionalFormatting(1, 1, unary);
        }
VB.NETCopy Code
Private Sub Page_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
            FpSpread1.Sheets(0).Cells(0, 0).Value = 3
            FpSpread1.Sheets(0).Cells(1, 0).Value = 2
            FpSpread1.Sheets(0).Cells(1, 1).Value = 10
            FpSpread1.Sheets(0).Cells(0, 2).Value = 1
        End Sub

Protected Sub Button1_Click(sender As Object, e As EventArgs) Handles Button1.Click
            'Unary comparison CF
            Dim unary As New FarPoint.Web.Spread.UnaryComparisonConditionalFormattingRule(FarPoint.Web.Spread.UnaryComparisonOperator.EqualTo, 10)
            unary.Operator = FarPoint.Web.Spread.UnaryComparisonOperator.EqualTo
            unary.Value = 10
            unary.BackColor = Drawing.Color.Red
            unary.FontStyle = New FarPoint.Web.Spread.SpreadFontStyle(FarPoint.Web.Spread.RegularBoldItalicFontStyle.Bold, FarPoint.Web.Spread.StrikeoutFontStyle.None, FarPoint.Web.Spread.UnderlineFontStyle.Underline, FarPoint.Web.Spread.OverlineFontStyle.None)
            FpSpread1.ActiveSheetView.SetConditionalFormatting(1, 1, unary)
        End Sub

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.