LotusNotesViewInfo
All Implemented Interfaces: com.groupdocs.viewer.results.ViewInfo
public interface LotusNotesViewInfo extends ViewInfo
Represents view information for Lotus Notes database storage.
The LotusNotesViewInfo interface defines the contract for accessing and manipulating view information for Lotus Notes database storage in the GroupDocs.Viewer component. It provides methods to retrieve information such as notes count, and other properties.
Example usage:
try (Viewer viewer = new Viewer("document.nsf")) {
final LotusNotesViewInfo viewInfo = (LotusNotesViewInfo) viewer.getViewInfo(ViewInfoOptions.forHtmlView());
// Use the viewInfo object for further operations
}
Note: The default implementation of this interface is LotusNotesViewInfoImpl.
Methods
Method | Description |
---|---|
getNotesCount() | Retrieves the count of notes in the storage. |
setNotesCount(int count) | Sets the count of notes in the storage. |
getNotesCount()
public abstract int getNotesCount()
Retrieves the count of notes in the storage.
Returns: int - the count of notes in the storage.
setNotesCount(int count)
public abstract void setNotesCount(int count)
Sets the count of notes in the storage.
Parameters:
Parameter | Type | Description |
---|---|---|
count | int | the count of notes in the storage. |