Skip to main content
Row

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

SpreadsheetFont.Script Property

Formats the cell content as subscript or superscript.

Namespace: DevExpress.Spreadsheet

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

NuGet Package: DevExpress.Spreadsheet.Core

#Declaration

ScriptType Script { get; set; }

#Property Value

Type Description
ScriptType

A ScriptType enumerator member indicating whether the text is subscript or superscript.

Available values:

Name Description
None

Specifies that the text is not formatted as subscript or as superscript.

Superscript

Formats text as superscript.

Subscript

Formats text as subscript.

#Remarks

To specify all the required font characteristics, use the SpreadsheetFont object properties such as SpreadsheetFont.Name, SpreadsheetFont.FontStyle, SpreadsheetFont.Color, SpreadsheetFont.Size, etc. Review the How to: Configure Cell Font Settings example.

Access the SpreadsheetFont 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 documents.

See Also