OutlookOptions class
Leave feedback
On this page
Contains options for rendering Outlook data files.
For details, see the GroupDocs documentation.
The OutlookOptions type exposes the following members:
| Constructor | Description |
|---|---|
| init |
| Property | Description |
|---|---|
| address_filter | The email-address used to filter messages by sender or recipient. |
| folder | The name of the folder (e.g. Inbox, Sent Item or Deleted Items) to render. |
| max_items_in_folder | The maximum number of messages or items that can be rendered from one folder. |
| text_filter | The keywords used to filter messages. |
from groupdocs.viewer import Viewer
from groupdocs.viewer.options import HtmlViewOptions
def render_outlook():
with Viewer("sample.pst") as viewer:
view_options = HtmlViewOptions.for_embedded_resources(
"outlook.html"
)
# Limit the number of items rendered per folder.
view_options.outlook_options.max_items_in_folder = 30
viewer.view(view_options)
- module
groupdocs.viewer.options
Was this page helpful?
Any additional feedback you'd like to share with us?
Please tell us how we can improve this page.
Thank you for your feedback!
We value your opinion. Your feedback will help us improve our documentation.