This is a migrated thread and some comments may be shown as answers.

Print Grid or PDF landscape

3 Answers 203 Views
Grid
This is a migrated thread and some comments may be shown as answers.
Mike
Top achievements
Rank 1
Mike asked on 21 Aug 2008, 03:37 PM
It's great to have this feature in the grid, but do you have it so the pdf will export to landscape and retain the formatting of the grids theme?

3 Answers, 1 is accepted

Sort by
0
Princy
Top achievements
Rank 2
answered on 22 Aug 2008, 04:19 AM
Hello George,

You can try out the following code to get a lanscsape orientation on exporting to pdf.
cs:
  protected void Button1_Click(object sender, EventArgs e) 
    {        
        RadGrid1.ExportSettings.ExportOnlyData = true
        RadGrid1.ExportSettings.OpenInNewWindow = true
        RadGrid1.ExportSettings.IgnorePaging = true
        // to get lanscape orientation 
        RadGrid1.ExportSettings.Pdf.PageHeight = Unit.Parse("162mm"); 
        RadGrid1.ExportSettings.Pdf.PageWidth = Unit.Parse("600mm"); 
        RadGrid1.MasterTableView.ExportToPdf(); 
    } 

You can also go through the following forum link
Formatting the Grid export to PDF

Thanks
Princy.
0
Accepted
Princy
Top achievements
Rank 2
answered on 22 Aug 2008, 04:47 AM
 
0
Mike
Top achievements
Rank 1
answered on 22 Aug 2008, 01:22 PM
Thanks Princy!

That should do it for the layout, can I send the Print to Landscape as the default setting also?

I just had to adjust the settings a little.
RadGrid1.ExportSettings.Pdf.PageHeight = Unit.Parse("200mm");  
RadGrid1.ExportSettings.Pdf.PageWidth = Unit.Parse("500mm");      
Tags
Grid
Asked by
Mike
Top achievements
Rank 1
Answers by
Princy
Top achievements
Rank 2
Mike
Top achievements
Rank 1
Share this question
or