Interface ISpreadExportCellStyleInfo
Namespace: Telerik.WinControls.Export
Assembly: Telerik.WinControls.dll
Syntax
public interface ISpreadExportCellStyleInfo
Properties
BackColor
Gets or sets the fill of the excel cell.
Declaration
Color BackColor { get; set; }
Property Value
System.Drawing.Color
|
Borders
Gets or sets the borders.
Declaration
object Borders { get; set; }
Property Value
System.Object
|
FontFamily
Gets or sets the font family of the excel cell.
Declaration
FontFamily FontFamily { get; set; }
Property Value
System.Drawing.FontFamily
|
FontSize
Gets or sets the size of the font of the excel cell.
Declaration
double FontSize { get; set; }
Property Value
System.Double
|
ForeColor
Gets or sets the ForeColor of the excel cell.
Declaration
Color ForeColor { get; set; }
Property Value
System.Drawing.Color
|
IsBold
Gets or sets a value indicating whether this text of the excel cell is bold.
Declaration
bool IsBold { get; set; }
Property Value
System.Boolean
|
IsItalic
Gets or sets a value indicating whether this text of the excel cell is italic.
Declaration
bool IsItalic { get; set; }
Property Value
System.Boolean
|
TextAlignment
Gets or sets the text alignment.
Declaration
ContentAlignment TextAlignment { get; set; }
Property Value
System.Drawing.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
Orientation TextOrientation { get; set; }
Property Value
System.Windows.Forms.Orientation
|
TextWrap
Gets or sets a value indicating whether the text of the excel cell is wrapped.
Declaration
bool TextWrap { get; set; }
Property Value
System.Boolean
|
Underline
Gets or sets whether the text of the excel cell is underline.
Declaration
bool Underline { get; set; }
Property Value
System.Boolean
|