Hi i am showing pdf document using C#. i just want to show pdf document without showing tool bar.please answer anyone.this is my code
axAcroPDF1.setShowToolbar(false);
this.axAcroPDF1.LoadFile(@"C:\Users\Chinna\Desktop\Sample.pdf");
setShowtoolbar(fasle) property is not working
i want to hide this toolbar in my pdf document
you should load file first then setShowToolbar
to false
axAcroPDF1.LoadFile(@"C:\Users\Chinna\Desktop\Sample.pdf");
axAcroPDF1.src = @"C:\Users\Chinna\Desktop\Sample.pdf";
axAcroPDF1.setShowToolbar(false);
axAcroPDF1.Show();