public interface ProjectManagementViewInfo extends ViewInfo
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.
Viewer,
ViewInfoOptions| Modifier and Type | Method and Description |
|---|---|
Date |
getEndDate()
Retrieves the date and time when the project is to be completed.
|
Date |
getStartDate()
Retrieves the date and time from which the project started.
|
void |
setEndDate(Date endDate)
Sets the end date and time for the project.
|
void |
setStartDate(Date startDate)
Sets the start date and time for the project.
|
getFileType, getPages, setFileType, setPagesDate getEndDate()
Retrieves the date and time when the project is to be completed.
Date getStartDate()
Retrieves the date and time from which the project started.
void setEndDate(Date endDate)
endDate - the new end date and time to be set.void setStartDate(Date startDate)
startDate - the new start date and time to be set.Copyright © 2025. All rights reserved.