New to Telerik UI for WinFormsStart a free 30-day trial

Represents a cell info of the GridViewSpreadStreamExport.

Definition

Namespace:Telerik.WinControls.Export

Assembly:Telerik.WinControls.GridView.dll

Syntax:

C#
public class GridViewSpreadStreamExportCellInfo : IGridViewSpreadStreamExportCellInfo, IGridViewSpreadExportCellInfo

Inheritance: objectGridViewSpreadStreamExportCellInfo

Implements: IGridViewSpreadExportCellInfoIGridViewSpreadStreamExportCellInfo

Constructors

Initializes a new instance of the GridViewSpreadStreamExportCellInfo class.

C#
public GridViewSpreadStreamExportCellInfo(Type rowType, int rowIndex, Type ColumnType, int columnIndex, object value, string exportFormat, DisplayFormatType exportFormatType, ISpreadStreamExportCellStyleInfo cellStyleInfo)
Parameters:rowTypeType

Type of the row.

rowIndexint

Index of the row.

ColumnTypeType

Type of the column.

columnIndexint

Index of the column.

valueobject

The value.

exportFormatstring

The export format.

exportFormatTypeDisplayFormatType

Type of the export format.

cellStyleInfoISpreadStreamExportCellStyleInfo

The cell style info.

Properties

Gets or sets the cell style info.

C#
public ISpreadStreamExportCellStyleInfo CellStyleInfo { get; set; }
Property Value:

The cell style info.

Implements: IGridViewSpreadStreamExportCellInfo.CellStyleInfo

Gets or sets the index of the grid column.

C#
public int ColumnIndex { get; set; }
Property Value:

The index of the column.

Implements: IGridViewSpreadStreamExportCellInfo.ColumnIndex

Gets or sets the type of the grid column.

C#
public Type ColumnType { get; set; }
Property Value:

The type of the column.

Implements: IGridViewSpreadStreamExportCellInfo.ColumnType

Gets or sets the export format.

C#
public string ExportFormat { get; set; }
Property Value:

The export format.

Implements: IGridViewSpreadExportCellInfo.ExportFormat

Gets or sets the type of the export format.

C#
public DisplayFormatType ExportFormatType { get; set; }
Property Value:

The type of the export format.

Implements: IGridViewSpreadExportCellInfo.ExportFormatType

Gets or sets the index of the grid row.

C#
public int RowIndex { get; set; }
Property Value:

The index of the row.

Implements: IGridViewSpreadStreamExportCellInfo.RowIndex

Gets or sets the type of the grid row.

C#
public Type RowType { get; set; }
Property Value:

The type of the row.

Implements: IGridViewSpreadStreamExportCellInfo.RowType

Gets or sets the value.

C#
public object Value { get; set; }
Property Value:

The value.

Implements: IGridViewSpreadExportCellInfo.Value