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
Initializes a new instance of the GridViewSpreadStreamExportCellInfo class.
public GridViewSpreadStreamExportCellInfo(Type rowType, int rowIndex, Type ColumnType, int columnIndex, object value, string exportFormat, DisplayFormatType exportFormatType, ISpreadStreamExportCellStyleInfo cellStyleInfo)
Type of the row.
rowIndexintIndex of the row.
ColumnTypeTypeType of the column.
columnIndexintIndex of the column.
valueobjectThe value.
exportFormatstringThe export format.
exportFormatTypeDisplayFormatTypeType of the export format.
cellStyleInfoISpreadStreamExportCellStyleInfoThe cell style info.
Properties
Gets or sets the cell style info.
public ISpreadStreamExportCellStyleInfo CellStyleInfo { get; set; }
The cell style info.
Implements:
Gets or sets the index of the grid column.
public int ColumnIndex { get; set; }
The index of the column.
Implements:
Gets or sets the type of the grid column.
public Type ColumnType { get; set; }
The type of the column.
Implements:
Gets or sets the export format.
public string ExportFormat { get; set; }
The export format.
Implements:
Gets or sets the type of the export format.
public DisplayFormatType ExportFormatType { get; set; }
The type of the export format.
Implements:
Gets or sets the index of the grid row.
public int RowIndex { get; set; }
The index of the row.
Implements:
Gets or sets the type of the grid row.
public Type RowType { get; set; }
The type of the row.
Implements: