Class GridViewSpreadStreamExportCellInfo
Represents a cell info of the GridViewSpreadStreamExport.
Inheritance
Inherited Members
Namespace: Telerik.WinControls.Export
Assembly: Telerik.WinControls.GridView.dll
Syntax
public class GridViewSpreadStreamExportCellInfo : IGridViewSpreadStreamExportCellInfo, IGridViewSpreadExportCellInfo
Constructors
GridViewSpreadStreamExportCellInfo(Type, Int32, Type, Int32, 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
System.Type
rowType
Type of the row. |
System.Int32
rowIndex
Index of the row. |
System.Type
ColumnType
Type of the column. |
System.Int32
columnIndex
Index of the column. |
System.Object
value
The value. |
System.String
exportFormat
The export format. |
DisplayFormatType
exportFormatType
Type of the export format. |
ISpreadStreamExportCellStyleInfo
cellStyleInfo
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
System.Int32
The index of the column. |
Implements
ColumnType
Gets or sets the type of the grid column.
Declaration
public Type ColumnType { get; set; }
Property Value
System.Type
The type of the column. |
Implements
ExportFormat
Gets or sets the export format.
Declaration
public string ExportFormat { get; set; }
Property Value
System.String
The export format. |
Implements
ExportFormatType
Gets or sets the type of the export format.
Declaration
public DisplayFormatType ExportFormatType { get; set; }
Property Value
DisplayFormatType
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
System.Int32
The index of the row. |
Implements
RowType
Gets or sets the type of the grid row.
Declaration
public Type RowType { get; set; }
Property Value
System.Type
The type of the row. |
Implements
Value
Gets or sets the value.
Declaration
public object Value { get; set; }
Property Value
System.Object
The value. |