SpreadsheetFont.Name Property
Gets or sets the name of the font applied to cell content.
Namespace: DevExpress.Spreadsheet
Assembly: DevExpress.Spreadsheet.v24.1.Core.dll
NuGet Package: DevExpress.Spreadsheet.Core
Declaration
Property Value
Type | Description |
---|---|
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.
- To specify the font of an individual cell, access the SpreadsheetFont object using the cell’s Formatting.Font property.
- To specify the font of a cell range, modify the SpreadsheetFont object within the CellRange.BeginUpdateFormatting–CellRange.EndUpdateFormatting method pair.
- To share the same font settings between multiple cells simultaneously, apply a cell style with the specified font to the required cells. To specify the cell style font, access the Style object from the IWorkbook.Styles collection and use this style’s Formatting.Font property within the Formatting.BeginUpdate–Formatting.EndUpdate paired methods to access and modify the SpreadsheetFont 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.
// 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;
Related GitHub Examples
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.