Page 1 of 1

Restrict User Toolbar Option in StiWebViewerFx

Posted: Thu Jun 24, 2010 11:58 pm
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

Restrict User Toolbar Option in StiWebViewerFx

Posted: Fri Jun 25, 2010 2:18 am
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.