How to disable or hide acrobat reader bookmarks panel in winform?

acrobat, c#

Solution

I hope that will help you.

// load pdf file
viewer.LoadFile(somePath);
// hide top toolbar
viewer.setShowToolbar(false);
// hide navigation bar
viewer.setPageMode("none");

'viewer' is ActiveX control from Adobe Reader (AcroPDFLib).

Problem

I'm showing PDF documents in my application using Acrobat ActiveX. I want to know is it possible to disable or hide Bookmarks(and Pages,Search,Comments,Attachments in left of panel) on PDF adobe reader when showing pdf?

Original source