Back to Devexpress

SpreadsheetFont.Name Property

officefileapi-devexpress-dot-spreadsheet-dot-spreadsheetfont-9bee73ae.md

latest9.2 KB
Original Source

SpreadsheetFont.Name Property

Gets or sets the name of the font applied to cell content.

Namespace : DevExpress.Spreadsheet

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

NuGet Package : DevExpress.Spreadsheet.Core

Declaration

csharp
string Name { get; set; }
vb
Property Name As String

Property Value

TypeDescription
String

The font name.

|

Remarks

Use the SpreadsheetFont object properties to specify font characteristics (Color, FontStyle, Size, Script, and so on). Use the Formatting.Font property to access this object.

See the following topics for examples on how to format a cell or cell range, and create or modify a cell style:

The Spreadsheet also allows you to use fonts that are not installed on the current operating system. Refer to this help topic for details: Load and Use Custom Fonts Without Installation on the System.

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 Name 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.

winforms-spreadsheetcontrol-api-part1/CS/SpreadsheetControl/SpreadsheetActions/FormattingActions.cs#L394

csharp
// Set the font name.
cellFont.Name = "Times New Roman";
// Set the font size.

winforms-spreadsheet-custom-draw-example/CS/WindowsFormsApp1/Form1.cs#L144

csharp
SpreadsheetFont defaultFont = spreadsheetControl1.Document.Styles.DefaultStyle.Font;
using (Font font = new Font(defaultFont.Name, (float)defaultFont.Size, FontStyle.Bold))
{

wpf-spreadsheetcontrol-api-part-1/CS/SpreadsheetControl_WPF_API/SpreadsheetActions/FormattingActions.cs#L363

csharp
// Set the font name.
cellFont.Name = "Times New Roman";
// Set the font size.

spreadsheet-document-api-examples-part1/CS/SpreadsheetExamples/SpreadsheetActions/FormattingActions.cs#L254

csharp
// Specify the font name.
cellFont.Name = "Times New Roman";
// Specify the font size.

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

vb
' Specify font settings (font name, color, size and style).
cell.Font.Name = "MV Boli"
cell.Font.Color = Color.Blue

winforms-spreadsheetcontrol-api-part1/VB/SpreadsheetControl/SpreadsheetActions/FormattingActions.vb#L382

vb
' Set the font name.
cellFont.Name = "Times New Roman"
' Set the font size.

winforms-spreadsheet-custom-draw-example/VB/CustomDrawExample/Form1.vb#L42

vb
Dim defaultFont As SpreadsheetFont = spreadsheetControl1.Document.Styles.DefaultStyle.Font
Using font As New Font(defaultFont.Name, CSng(defaultFont.Size), FontStyle.Bold)
    ' Specify layout settings for the column header.

wpf-spreadsheetcontrol-api-part-1/VB/SpreadsheetControl_WPF_API/SpreadsheetActions/FormattingActions.vb#L350

vb
' Set the font name.
cellFont.Name = "Times New Roman"
' Set the font size.

See Also

Size

FontStyle

Color

Script

Strikethrough

UnderlineType

Format Spreadsheet Cells

SpreadsheetFont Interface

SpreadsheetFont Members

DevExpress.Spreadsheet Namespace