Back to Devexpress

SpreadsheetFont.FontStyle Property

officefileapi-devexpress-dot-spreadsheet-dot-spreadsheetfont-8fb42a88.md

latest9.0 KB
Original Source

SpreadsheetFont.FontStyle Property

Gets or sets the font style (bold, italic, etc.) applied to the cell content.

Namespace : DevExpress.Spreadsheet

Assembly : DevExpress.Spreadsheet.v25.2.Core.dll

NuGet Package : DevExpress.Spreadsheet.Core

Declaration

csharp
SpreadsheetFontStyle FontStyle { get; set; }
vb
Property FontStyle As SpreadsheetFontStyle

Property Value

TypeDescription
SpreadsheetFontStyle

A SpreadsheetFontStyle enumerator member.

|

Available values:

NameDescription
Regular

Specifies that the text is regular.

| | Italic |

Specifies that the text is italic.

| | Bold |

Specifies that the text is bold.

| | BoldItalic |

Specifies that the text is bold and italic.

|

Remarks

To specify all the required font characteristics, use the SpreadsheetFont object properties such as SpreadsheetFont.Name, SpreadsheetFont.Size, SpreadsheetFont.Color, SpreadsheetFont.Script, etc. Access this object via the Formatting.Font property.

For examples on how to specify formatting for an individual cell and cell range or modify a style, refer to the How to: Format a Cell or Range of Cells or How to: Create or Modify a Style document, respectively.

Note

You can also format the cell content as bold or as italic via the SpreadsheetFont.Bold or SpreadsheetFont.Italic properties.

Example

This example demonstrates how to format cell font characteristics (e.g., font name, size, color, style) by modifying the SpreadsheetFont object accessed via the Formatting.Font property of the Cell object.

View Example

csharp
// Access the Font object.
SpreadsheetFont cellFont = worksheet.Cells["A1"].Font;
// Set the font name.
cellFont.Name = "Times New Roman";
// Set the font size.
cellFont.Size = 14;
// Set the font color.
cellFont.Color = Color.Blue;
// Format text as bold.
cellFont.Bold = true;
// Set font to be underlined.
cellFont.UnderlineType = UnderlineType.Single;
vb
' Access the Font object.
Dim cellFont As SpreadsheetFont = worksheet.Cells("A1").Font
' Set the font name.
cellFont.Name = "Times New Roman"
' Set the font size.
cellFont.Size = 14
' Set the font color.
cellFont.Color = Color.Blue
' Format text as bold.
cellFont.Bold = True
' Set font to be underlined.
cellFont.UnderlineType = UnderlineType.Single

The following code snippets (auto-collected from DevExpress Examples) contain references to the FontStyle property.

Note

The algorithm used to collect these code examples remains a work in progress. Accordingly, the links and snippets below may produce inaccurate results. If you encounter an issue with code examples below, please use the feedback form on this page to report the issue.

asp-net-mvc-spreadsheet-modify-document/CS/DXWebApplication1/Controllers/HomeController.cs#L32

csharp
rangeFormatting.Font.Color = Color.SandyBrown;
rangeFormatting.Font.FontStyle = SpreadsheetFontStyle.Bold;
rangeFormatting.Fill.BackgroundColor = Color.PaleGoldenrod;

asp-net-core-spreadsheet-update-document/CS/UpdateDocumentUsingAJAX/Controllers/HomeController.cs#L48

csharp
fistRow.Font.Size = 12;
fistRow.Font.FontStyle = SpreadsheetFontStyle.Bold;
Column fistColumn = worksheet.Columns[0];

winforms-dashboard-custom-items/CS/TutorialsCustomItems/Form1.cs#L52

csharp
worksheet.Cells[0, colIndex].FillColor = Color.LightGreen;
worksheet.Cells[0, colIndex].Font.FontStyle = SpreadsheetFontStyle.Bold;
int headerOffset = 1;

spreadsheet-document-api-examples-part1/VB/SpreadsheetExamples/SpreadsheetActions/FormattingActions.vb#L102

vb
cell.Font.Size = 14
cell.Font.FontStyle = SpreadsheetFontStyle.Bold
' Specify the cell background color.

asp-net-mvc-spreadsheet-modify-document/VB/DXWebApplication1/Controllers/HomeController.vb#L25

vb
rangeFormatting.Font.Color = Color.SandyBrown
rangeFormatting.Font.FontStyle = SpreadsheetFontStyle.Bold
rangeFormatting.Fill.BackgroundColor = Color.PaleGoldenrod

winforms-dashboard-custom-items/VB/TutorialsCustomItems/Form1.vb#L55

vb
worksheet.Cells(0, colIndex).FillColor = Color.LightGreen
worksheet.Cells(0, colIndex).Font.FontStyle = SpreadsheetFontStyle.Bold
Dim headerOffset As Integer = 1

See Also

Name

Size

Color

Script

Strikethrough

UnderlineType

WinForms Spreadsheet Control Examples

SpreadsheetFont Interface

SpreadsheetFont Members

DevExpress.Spreadsheet Namespace