ISpreadExportCellStyleInfo
Interface
Definition
Namespace:Telerik.WinControls.Export
Assembly:Telerik.WinControls.dll
Syntax:
C#
public interface ISpreadExportCellStyleInfo
Derived Classes:
Properties
Gets or sets the font family of the excel cell.
C#
FontFamily FontFamily { get; set; }
Gets or sets a value indicating whether this text of the excel cell is bold.
C#
bool IsBold { get; set; }
Gets or sets a value indicating whether this text of the excel cell is italic.
C#
bool IsItalic { get; set; }
Gets or sets the text alignment.
C#
ContentAlignment TextAlignment { get; set; }
Gets or sets the orientation of the text. The available values are Horizontal(default) or vertical. Note that the TextOrientation is currently supported only when exporting to XLSX format.
C#
Orientation TextOrientation { get; set; }
Gets or sets a value indicating whether the text of the excel cell is wrapped.
C#
bool TextWrap { get; set; }