New to Telerik UI for WinFormsStart a free 30-day trial

Definition

Namespace:Telerik.WinControls.Export

Assembly:Telerik.WinControls.dll

Syntax:

C#
public interface ISpreadExportCellStyleInfo

Derived Classes: CellStyleInfo

Properties

Gets or sets the fill of the excel cell.

C#
Color BackColor { get; set; }

Gets or sets the borders.

C#
object Borders { get; set; }

Gets or sets the font family of the excel cell.

C#
FontFamily FontFamily { get; set; }

Gets or sets the size of the font of the excel cell.

C#
double FontSize { get; set; }

Gets or sets the ForeColor of the excel cell.

C#
Color ForeColor { 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; }

Gets or sets whether the text of the excel cell is underline.

C#
bool Underline { get; set; }