public GridExportSettings()
 {
     ExportUrl       = "";
     CSVSeparator    = ",";
     ExportHeaders   = true;
     ExportDataRange = ExportDataRange.All;
 }
Example #2
0
 public GridExportSettings()
 {
     this.ExportUrl       = "";
     this.CSVSeparator    = ",";
     this.ExportHeaders   = true;
     this.ExportDataRange = ExportDataRange.Filtered;
 }
Example #3
0
		public GridExportSettings()
		{
			this.ExportUrl = "";
			this.CSVSeparator = ",";
			this.ExportHeaders = true;
			this.ExportDataRange = ExportDataRange.All;
		}