Hi Telerik Team,
I have a sheet and should print it directly in default printer. I'm using RadSpreadsheet, but does is not working. I follow the documentation shown: http://www.telerik.com/help/wpf/radspreadsheet-overview.html. Basicly, I do:
The above code doesn't prints the file.
What I'm doing wrong?
PS: I'm evaluating the components for a new project (The trial version).
Thanks.
I have a sheet and should print it directly in default printer. I'm using RadSpreadsheet, but does is not working. I follow the documentation shown: http://www.telerik.com/help/wpf/radspreadsheet-overview.html. Basicly, I do:
RadSpreadsheet radSpreadSheet =
new
RadSpreadsheet();
radSpreadSheet.Workbook = myWorkbook;
radSpreadSheet.ActiveSheet = myWorkbook.Worksheets[0];
PrintWhatSettings printWhatSettings =
new
PrintWhatSettings(ExportWhat.ActiveSheet,
false
);
radSpreadSheet.Print(printWhatSettings);
The above code doesn't prints the file.
What I'm doing wrong?
PS: I'm evaluating the components for a new project (The trial version).
Thanks.