public interface OutlookViewInfo extends ViewInfo
The OutlookViewInfo interface defines the contract for accessing and manipulating view information for an Outlook Data file in the GroupDocs.Viewer component. It provides methods to retrieve information such as a list of folders, and other properties.
Example usage:
try (Viewer viewer = new Viewer("document.pst")) {
final OutlookViewInfo viewInfo = (OutlookViewInfo) viewer.getViewInfo(ViewInfoOptions.forHtmlView());
// Use the viewInfo object for further operations
}
Note: The default implementation of this interface is OutlookViewInfoImpl.
Viewer,
ViewInfoOptions| Modifier and Type | Method and Description |
|---|---|
List<String> |
getFolders()
Retrieves the list of folders contained in the Outlook Data file.
|
void |
setFolders(List<String> list)
Sets the list of folders contained in the Outlook Data file.
|
getFileType, getPages, setFileType, setPagesCopyright © 2025. All rights reserved.