When using GridButtonColumn with a ImageButton and text as in below... the text shows up as a tooltip on the image which is fine.. but when exporting to a PDF the text also shows there even though I hide the column. If I change to a button column all works fine.
<telerik:GridButtonColumn ConfirmText="Remove this GCS Security Function?" ConfirmDialogType="RadWindow" ConfirmTitle="Remove" CommandName="Delete" Text="Remove this GCS Security Function" UniqueName="DeleteColumn" ButtonType="ImageButton"></telerik:GridButtonColumn>protected void RadGrid1_ItemCommand(object sender, GridCommandEventArgs e){ if (e.CommandName == RadGrid.ExportToPdfCommandName) { RadGrid1.MasterTableView.DetailTables[0].GetColumn("DeleteColumn").Visible = false; return; }}