public interface ProjectManagementViewInfo extends ViewInfo
Represents view information for an MS Project document.
The ProjectManagementViewInfo interface defines the contract for accessing and manipulating view information for an MS Project document in the GroupDocs.Viewer component. It provides methods to retrieve information such as the start and end dates, and other properties.
Example usage:
try (Viewer viewer = new Viewer("document.mpp")) {
final ProjectManagementViewInfo viewInfo = (ProjectManagementViewInfo) viewer.getViewInfo(ViewInfoOptions.forPngView());
// Use the viewInfo object for further operations
}
Note: The default implementation of this interface is ProjectManagementViewInfoImpl.