I just dowloaded the trail version Telerik. I was able to create a RadGrid and export it to Excel, Now I'm exporting it to PDF can I change the page size (landscape) and font size in the button click event I have below if so how? Thanks
Protected Sub Button2_Click(sender As Object, e As EventArgs) Handles Button2.Click For Each item As GridDataItem In RadGrid1.Items item.Style("background-color") = "#FFFFFF" Next RadGrid1.MasterTableView.BorderStyle = BorderStyle.None Dim fileName As String = "myExceltest.pdf" RadGrid1.MasterTableView.ExportToPdf() End Sub