Interface
ISpreadExportCellStyleInfo

Definition

Namespace:Telerik.WinControls.Export

Assembly:Telerik.WinControls.dll

Syntax:

cs-api-definition
public interface ISpreadExportCellStyleInfo

Properties

BackColor

Gets or sets the fill of the excel cell.

Declaration

cs-api-definition
Color BackColor { get; set; }

Property Value

Color

Borders

Gets or sets the borders.

Declaration

cs-api-definition
object Borders { get; set; }

Property Value

object

FontFamily

Gets or sets the font family of the excel cell.

Declaration

cs-api-definition
FontFamily FontFamily { get; set; }

Property Value

FontFamily

FontSize

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

Declaration

cs-api-definition
double FontSize { get; set; }

Property Value

double

ForeColor

Gets or sets the ForeColor of the excel cell.

Declaration

cs-api-definition
Color ForeColor { get; set; }

Property Value

Color

IsBold

Gets or sets a value indicating whether this text of the excel cell is bold.

Declaration

cs-api-definition
bool IsBold { get; set; }

Property Value

bool

IsItalic

Gets or sets a value indicating whether this text of the excel cell is italic.

Declaration

cs-api-definition
bool IsItalic { get; set; }

Property Value

bool

TextAlignment

Gets or sets the text alignment.

Declaration

cs-api-definition
ContentAlignment TextAlignment { get; set; }

Property Value

ContentAlignment

TextOrientation

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.

Declaration

cs-api-definition
Orientation TextOrientation { get; set; }

Property Value

Orientation

TextWrap

Gets or sets a value indicating whether the text of the excel cell is wrapped.

Declaration

cs-api-definition
bool TextWrap { get; set; }

Property Value

bool

Underline

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

Declaration

cs-api-definition
bool Underline { get; set; }

Property Value

bool