ClassGridViewSpreadStreamExportCellInfo
Represents a cell info of the GridViewSpreadStreamExport.
Definition
Namespace:Telerik.WinControls.Export
Assembly:Telerik.WinControls.GridView.dll
Syntax:
public class GridViewSpreadStreamExportCellInfo : IGridViewSpreadStreamExportCellInfo, IGridViewSpreadExportCellInfo
Inheritance: objectGridViewSpreadStreamExportCellInfo
Implements:
Constructors
GridViewSpreadStreamExportCellInfo(Type, int, Type, int, object, string, DisplayFormatType, ISpreadStreamExportCellStyleInfo)
Initializes a new instance of the GridViewSpreadStreamExportCellInfo class.
Declaration
public GridViewSpreadStreamExportCellInfo(Type rowType, int rowIndex, Type ColumnType, int columnIndex, object value, string exportFormat, DisplayFormatType exportFormatType, ISpreadStreamExportCellStyleInfo cellStyleInfo)
Parameters
rowType
Type of the row.
rowIndex
Index of the row.
ColumnType
Type of the column.
columnIndex
Index of the column.
value
The value.
exportFormat
The export format.
exportFormatType
Type of the export format.
cellStyleInfo
ISpreadStreamExportCellStyleInfo
The cell style info.
Properties
CellStyleInfo
Gets or sets the cell style info.
Declaration
public ISpreadStreamExportCellStyleInfo CellStyleInfo { get; set; }
Property Value
ISpreadStreamExportCellStyleInfo
The cell style info.
Implements
ColumnIndex
Gets or sets the index of the grid column.
Declaration
public int ColumnIndex { get; set; }
Property Value
The index of the column.
Implements
ColumnType
Gets or sets the type of the grid column.
Declaration
public Type ColumnType { get; set; }
Property Value
The type of the column.
Implements
ExportFormat
Gets or sets the export format.
Declaration
public string ExportFormat { get; set; }
Property Value
The export format.
Implements
ExportFormatType
Gets or sets the type of the export format.
Declaration
public DisplayFormatType ExportFormatType { get; set; }
Property Value
The type of the export format.
Implements
RowIndex
Gets or sets the index of the grid row.
Declaration
public int RowIndex { get; set; }
Property Value
The index of the row.
Implements
RowType
Gets or sets the type of the grid row.
Declaration
public Type RowType { get; set; }
Property Value
The type of the row.
Implements