In addition, you may also use the PrintInfo class on every sheet and specify the settings to hide the Column and Row Headers. Below is the code snippet:
PrintInfo pi = new PrintInfo();
pi.ShowColumnHeader = PrintHeader.Hide;
pi.ShowRowHeader = PrintHeader.Hide;
FpSpread1.Sheets[0].PrintInfo = pi;
FpSpread1.SavePdf(0,@"c:\abc.pdf");
Regards,
Scott S.
Product Manager, Spread ASP.NET
GrapeCity FarPoint