You can specify the file name, as well as other parameters for export, in the ExportSettings property of the grid (and not MasterTableView ). For example:
myGrid.ExportSettings.FileName = "file"; myGrid.ExportSettings.Excel.Extension = "xls"; myGrid.MasterTableView.ExportToExcel();
source share