Limit count of items to render
GroupDocs.Viewer allows rendering the items in Outlook Data Files (OST/PST). OutlookOptions is used to set rendering options for OST and PST formats. The following steps are to be followed when rendering the items in Outlook Data Files.
- Create Viewer object;
- Create HtmlViewOptions (or JpgViewOptions, or PngViewOptions, or PdfViewOptions) object;
- Set Outlook options i.e. HtmlViewOptions.OutlookOptions.MaxItemsInFolder;
- Call View method.
The following code samples show how to render the items in an Outlook Data File by setting a maximum limit.
using (Viewer viewer = new Viewer("sample.ost"))
{
HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources();
viewOptions.OutlookOptions.MaxItemsInFolder = 1000;
viewer.View(viewOptions);
}