Ejemplo n.º 1
0
 private void NewExportFileInfo(string fileName, int startRow, int endRow, FileCompressionTypeEnum CompressType)
 {
     this.FileName = fileName;
     this.StartRow = startRow;
     this.EndRow   = endRow;
     //default flags
     this.Compressed      = false;
     this.Created         = false;
     this.Exported        = false;
     this.CompressionType = CompressType;
 }
Ejemplo n.º 2
0
        public ExportFileInfo(string filePrefix, string appendDateFormat, string fileExtension, FileCompressionTypeEnum CompressType)
        {
            // update file name
            string strFileName = filePrefix + DateTime.Now.ToString(appendDateFormat) + fileExtension;

            NewExportFileInfo(strFileName, -1, -1, CompressType);
        }
Ejemplo n.º 3
0
 internal ExportFileInfo(string fileName, int startRow, int endRow, FileCompressionTypeEnum CompressType)
 {
     NewExportFileInfo(fileName, startRow, endRow, CompressType);
 }