public GridViewSpreadExportCellInfo(
     object value,
     string exportFormat,
     DisplayFormatType exportFormatType)
 {
     this.value            = value;
     this.exportFormat     = exportFormat;
     this.exportFormatType = exportFormatType;
 }
 public GridViewSpreadStreamExportCellInfo(
     Type rowType,
     int rowIndex,
     Type ColumnType,
     int columnIndex,
     object value,
     string exportFormat,
     DisplayFormatType exportFormatType,
     ISpreadStreamExportCellStyleInfo cellStyleInfo)
 {
     this.RowType          = rowType;
     this.RowIndex         = rowIndex;
     this.ColumnType       = ColumnType;
     this.ColumnIndex      = columnIndex;
     this.Value            = value;
     this.ExportFormat     = exportFormat;
     this.ExportFormatType = exportFormatType;
     this.CellStyleInfo    = cellStyleInfo;
 }