officefileapi-devexpress-dot-spreadsheet-dot-spreadsheetfont-336dcef1.md
Gets or sets the size of the font applied to the cell content.
Namespace : DevExpress.Spreadsheet
Assembly : DevExpress.Spreadsheet.v25.2.Core.dll
NuGet Package : DevExpress.Spreadsheet.Core
double Size { get; set; }
Property Size As Double
| Type | Description |
|---|---|
| Double |
A Double value specifying the font size in points.
|
To specify all the required font characteristics, use the SpreadsheetFont object properties such as SpreadsheetFont.Name, SpreadsheetFont.FontStyle, 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.
To automatically reduce the font size to fit the cell content to the column width, use the Alignment.ShrinkToFit property. Note that this property does not change the Size property value.
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;
' 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 Size 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.
fistRow.Alignment.Horizontal = SpreadsheetHorizontalAlignment.Center;
fistRow.Font.Size = 12;
fistRow.Font.FontStyle = SpreadsheetFontStyle.Bold;
// Set the font size.
cellFont.Size = 14;
// Set the font color.
winforms-spreadsheet-custom-draw-example/CS/WindowsFormsApp1/Form1.cs#L144
SpreadsheetFont defaultFont = spreadsheetControl1.Document.Styles.DefaultStyle.Font;
using (Font font = new Font(defaultFont.Name, (float)defaultFont.Size, FontStyle.Bold))
{
// Set the font size.
cellFont.Size = 14;
// Set the font color.
// Specify the font size.
cellFont.Size = 14;
// Specify the font color.
' Specify the font size.
myStyle.Font.Size = 12
' Specify the horizontal alignment.
' Set the font size.
cellFont.Size = 14
' Set the font color.
winforms-spreadsheet-custom-draw-example/VB/CustomDrawExample/Form1.vb#L42
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.
' Set the font size.
cellFont.Size = 14
' Set the font color.
See Also