Restrict User Toolbar Option in StiWebViewerFx

Stimulsoft Reports.WEB discussion
Post Reply
keyideas
Posts: 4
Joined: Thu Jun 24, 2010 11:45 pm
Location: Delhi

Restrict User Toolbar Option in StiWebViewerFx

Post by keyideas »

Is these options are available in StiWebViewerFx

1) I need to restrict user to open/print and save button.
StiWebDesignerOptions.Viewer.Toolbar.ShowPrintButton = False
StiWebDesignerOptions.Viewer.Toolbar.ShowSaveButton = False
StiWebDesignerOptions.Viewer.Toolbar.ShowOpenButton = False
2)I need to open report by default as without PageThumbnail
PageThumbnail option control
3)I need a button on toolbar to show report in Fullscreen Mode.
how to show FullScreen Report
Regards

Yogesh
Vladimir
Posts: 1462
Joined: Fri Apr 13, 2007 4:05 am
Location: Earth

Restrict User Toolbar Option in StiWebViewerFx

Post by Vladimir »

Hello,

1) For StiWebViewerFx these options can be found here:

Code: Select all

StiWebViewerFxOptions.Toolbar.ShowPrintButton = False
StiWebViewerFxOptions.Toolbar.ShowSaveButton = False
StiWebViewerFxOptions.Toolbar.ShowOpenButton = False
2) Please use this option:

Code: Select all

StiWebViewerFxOptions.Toolbar.ShowThumbnailsButton = False
3) Please let us know do you want to view a report on all the viewer window or on full screen?
In the first case, please use this option:

Code: Select all

StiWebViewerFxOptions.Toolbar.ZoomMode = StiZoomMode.PageWidth
In the second case, you need to switch your browser to full screen mode (default key is F11).

Thank you.
Post Reply