DocumentProperties
Inheritance: java.lang.Object
All Implemented Interfaces: com.aspose.slides.IDocumentProperties, com.aspose.slides.IGenericCloneable, java.lang.Cloneable
public class DocumentProperties implements IDocumentProperties, IGenericCloneable<IDocumentProperties>, Cloneable
Represents properties of a presentation.
The following example shows how to access built-in Properties of PowerPoint Presentation. // Instantiate the Presentation class that represents the presentation Presentation pres = new Presentation("AccessBuiltin Properties.pptx"); try { // Create a reference to IDocumentProperties object associated with Presentation IDocumentProperties documentProperties = pres.getDocumentProperties(); // Display the builtin properties System.out.println("Category : " + documentProperties.getCategory()); System.out.println("Current Status : " + documentProperties.getContentStatus()); System.out.println("Creation Date : " + documentProperties.getCreatedTime()); System.out.println("Author : " + documentProperties.getAuthor()); System.out.println("Description : " + documentProperties.getComments()); } finally { if (pres != null) pres.dispose(); } The following example shows how to modify built-in Properties of PowerPoint Presentation. // Instantiate the Presentation class that represents the Presentation Presentation pres = new Presentation("ModifyBuiltinProperties.pptx"); try { // Create a reference to IDocumentProperties object associated with Presentation IDocumentProperties documentProperties = pres.getDocumentProperties(); // Set the builtin properties documentProperties.setAuthor("Aspose.Slides for Java"); documentProperties.setTitle("Modifying Presentation Properties"); documentProperties.setSubject("Aspose Subject"); // Save your presentation to a file pres.save("DocumentProperties_out.pptx", SaveFormat.Pptx); } finally { if (pres != null) pres.dispose(); }
Constructors
Constructor | Description |
---|---|
DocumentProperties() | Initializes new instance of class DocumentProperties. |
Methods
Method | Description |
---|---|
getAppVersion() | Returns the app version. |
getNameOfApplication() | Returns or sets the name of the application. |
setNameOfApplication(String value) | Returns or sets the name of the application. |
getCompany() | Returns or sets the company property. |
setCompany(String value) | Returns or sets the company property. |
getManager() | Returns or sets the manager property. |
setManager(String value) | Returns or sets the manager property. |
getPresentationFormat() | Returns or sets the intended format of a presentation. |
setPresentationFormat(String value) | Returns or sets the intended format of a presentation. |
getSharedDoc() | Determines whether the presentation is shared between multiple people. |
setSharedDoc(boolean value) | Determines whether the presentation is shared between multiple people. |
getApplicationTemplate() | Returns or sets the template of a application. |
setApplicationTemplate(String value) | Returns or sets the template of a application. |
getTotalEditingTime() | Total editing time of a presentation. |
setTotalEditingTime(double value) | Total editing time of a presentation. |
getTitle() | Returns or sets the title of a presentation. |
setTitle(String value) | Returns or sets the title of a presentation. |
getSubject() | Returns or sets the subject of a presentation. |
setSubject(String value) | Returns or sets the subject of a presentation. |
getAuthor() | Returns or sets the author of a presentation. |
setAuthor(String value) | Returns or sets the author of a presentation. |
getKeywords() | Returns or sets the keywords of a presentation. |
setKeywords(String value) | Returns or sets the keywords of a presentation. |
getComments() | Returns or sets the comments of a presentation. |
setComments(String value) | Returns or sets the comments of a presentation. |
getCategory() | Returns or sets the category of a presentation. |
setCategory(String value) | Returns or sets the category of a presentation. |
getCreatedTime() | Returns the date a presentation was created. |
setCreatedTime(Date value) | Returns the date a presentation was created. |
getLastSavedTime() | Returns the date a presentation was last modified. |
setLastSavedTime(Date value) | Returns the date a presentation was last modified. |
getLastPrinted() | Returns the date when a presentation was printed last time. |
setLastPrinted(Date value) | Returns the date when a presentation was printed last time. |
getLastSavedBy() | Returns or sets the name of a last person who modified a presentation. |
setLastSavedBy(String value) | Returns or sets the name of a last person who modified a presentation. |
getRevisionNumber() | Returns or sets the presentation revision number. |
setRevisionNumber(int value) | Returns or sets the presentation revision number. |
getContentStatus() | Returns or sets the content status of a presentation. |
setContentStatus(String value) | Returns or sets the content status of a presentation. |
getContentType() | Returns or sets the content type of a presentation. |
setContentType(String value) | Returns or sets the content type of a presentation. |
getHyperlinkBase() | Returns or sets the HyperlinkBase document property. |
setHyperlinkBase(String value) | Returns or sets the HyperlinkBase document property. |
getCountOfCustomProperties() | Returns the number of custom properties actually contained in a collection. |
getCustomPropertyName(int index) | Return a custom property name at the specified index. |
removeCustomProperty(String name) | Remove a custom property associated with a specified name. |
containsCustomProperty(String name) | Check presents of a custom property with a specified name. |
get_Item(String name) | Returns or sets the custom property associated with a specified name. |
set_Item(String name, Object value) | Returns or sets the custom property associated with a specified name. |
getCustomPropertyValue(String name, boolean[] value) | Gets a named boolean value from the custom properties. |
getCustomPropertyValue(String name, int[] value) | Gets a named integer value from the custom properties. |
getCustomPropertyValue(String name, Date[] value) | Gets a named DateTime value from the custom properties. |
getCustomPropertyValue(String name, String[] value) | Gets a named string value from the custom properties. |
getCustomPropertyValue(String name, float[] value) | Gets a named float value from the custom properties. |
getCustomPropertyValue(String name, double[] value) | Gets a named double value from the custom properties. |
setCustomPropertyValue(String name, boolean value) | Sets a named boolean custom property. |
setCustomPropertyValue(String name, int value) | Sets a named integer custom property. |
setCustomPropertyValue(String name, Date value) | Sets a named DateTime custom property. |
setCustomPropertyValue(String name, String value) | Sets a named string custom property. |
setCustomPropertyValue(String name, float value) | Sets a named float custom property. |
setCustomPropertyValue(String name, double value) | Sets a named double custom property. |
clearCustomProperties() | Removes all custom properties. |
clearBuiltInProperties() | Clears and sets default values for all builtIn properties. |
deepClone() | Clones current object |
cloneT() | Clones current object |
DocumentProperties()
public DocumentProperties()
Initializes new instance of class DocumentProperties.
getAppVersion()
public final String getAppVersion()
Returns the app version. Read-only String.
Returns: java.lang.String
getNameOfApplication()
public final String getNameOfApplication()
Returns or sets the name of the application. Read/write String.
Returns: java.lang.String
setNameOfApplication(String value)
public final void setNameOfApplication(String value)
Returns or sets the name of the application. Read/write String.
Parameters:
Parameter | Type | Description |
---|---|---|
value | java.lang.String |
getCompany()
public final String getCompany()
Returns or sets the company property. Read/write String.
Returns: java.lang.String
setCompany(String value)
public final void setCompany(String value)
Returns or sets the company property. Read/write String.
Parameters:
Parameter | Type | Description |
---|---|---|
value | java.lang.String |
getManager()
public final String getManager()
Returns or sets the manager property. Read/write String.
Returns: java.lang.String
setManager(String value)
public final void setManager(String value)
Returns or sets the manager property. Read/write String.
Parameters:
Parameter | Type | Description |
---|---|---|
value | java.lang.String |
getPresentationFormat()
public final String getPresentationFormat()
Returns or sets the intended format of a presentation. Read/write String.
Returns: java.lang.String
setPresentationFormat(String value)
public final void setPresentationFormat(String value)
Returns or sets the intended format of a presentation. Read/write String.
Parameters:
Parameter | Type | Description |
---|---|---|
value | java.lang.String |
getSharedDoc()
public final boolean getSharedDoc()
Determines whether the presentation is shared between multiple people. Read/write boolean.
Returns: boolean
setSharedDoc(boolean value)
public final void setSharedDoc(boolean value)
Determines whether the presentation is shared between multiple people. Read/write boolean.
Parameters:
Parameter | Type | Description |
---|---|---|
value | boolean |
getApplicationTemplate()
public final String getApplicationTemplate()
Returns or sets the template of a application. Read/write String.
Returns: java.lang.String
setApplicationTemplate(String value)
public final void setApplicationTemplate(String value)
Returns or sets the template of a application. Read/write String.
Parameters:
Parameter | Type | Description |
---|---|---|
value | java.lang.String |
getTotalEditingTime()
public final double getTotalEditingTime()
Total editing time of a presentation. Read/write double.
Returns: double
setTotalEditingTime(double value)
public final void setTotalEditingTime(double value)
Total editing time of a presentation. Read/write double.
Parameters:
Parameter | Type | Description |
---|---|---|
value | double |
getTitle()
public final String getTitle()
Returns or sets the title of a presentation. Read/write String.
Returns: java.lang.String
setTitle(String value)
public final void setTitle(String value)
Returns or sets the title of a presentation. Read/write String.
Parameters:
Parameter | Type | Description |
---|---|---|
value | java.lang.String |
getSubject()
public final String getSubject()
Returns or sets the subject of a presentation. Read/write String.
Returns: java.lang.String
setSubject(String value)
public final void setSubject(String value)
Returns or sets the subject of a presentation. Read/write String.
Parameters:
Parameter | Type | Description |
---|---|---|
value | java.lang.String |
getAuthor()
public final String getAuthor()
Returns or sets the author of a presentation. Read/write String.
Returns: java.lang.String
setAuthor(String value)
public final void setAuthor(String value)
Returns or sets the author of a presentation. Read/write String.
Parameters:
Parameter | Type | Description |
---|---|---|
value | java.lang.String |
getKeywords()
public final String getKeywords()
Returns or sets the keywords of a presentation. Read/write String.
Returns: java.lang.String
setKeywords(String value)
public final void setKeywords(String value)
Returns or sets the keywords of a presentation. Read/write String.
Parameters:
Parameter | Type | Description |
---|---|---|
value | java.lang.String |
getComments()
public final String getComments()
Returns or sets the comments of a presentation. Read/write String.
Returns: java.lang.String
setComments(String value)
public final void setComments(String value)
Returns or sets the comments of a presentation. Read/write String.
Parameters:
Parameter | Type | Description |
---|---|---|
value | java.lang.String |
getCategory()
public final String getCategory()
Returns or sets the category of a presentation. Read/write String.
Returns: java.lang.String
setCategory(String value)
public final void setCategory(String value)
Returns or sets the category of a presentation. Read/write String.
Parameters:
Parameter | Type | Description |
---|---|---|
value | java.lang.String |
getCreatedTime()
public final Date getCreatedTime()
Returns the date a presentation was created. Values are in UTC. Read/write java.util.Date.
Returns: java.util.Date
setCreatedTime(Date value)
public final void setCreatedTime(Date value)
Returns the date a presentation was created. Values are in UTC. Read/write java.util.Date.
Parameters:
Parameter | Type | Description |
---|---|---|
value | java.util.Date |
getLastSavedTime()
public final Date getLastSavedTime()
Returns the date a presentation was last modified. Values are in UTC. Read-only in case of Presentation.DocumentProperties (because it will be updated internally while IPresentation object saving process). Can be changed via DocumentProperties instance returning by method IPresentationInfo.readDocumentProperties Please see the example in IPresentationInfo.updateDocumentProperties(IDocumentProperties) method summary.
Returns: java.util.Date
setLastSavedTime(Date value)
public final void setLastSavedTime(Date value)
Returns the date a presentation was last modified. Values are in UTC. Read-only in case of Presentation.DocumentProperties (because it will be updated internally while IPresentation object saving process). Can be changed via DocumentProperties instance returning by method IPresentationInfo.readDocumentProperties Please see the example in IPresentationInfo.updateDocumentProperties(IDocumentProperties) method summary.
Parameters:
Parameter | Type | Description |
---|---|---|
value | java.util.Date |
getLastPrinted()
public final Date getLastPrinted()
Returns the date when a presentation was printed last time. Read/write java.util.Date.
Returns: java.util.Date
setLastPrinted(Date value)
public final void setLastPrinted(Date value)
Returns the date when a presentation was printed last time. Read/write java.util.Date.
Parameters:
Parameter | Type | Description |
---|---|---|
value | java.util.Date |
getLastSavedBy()
public final String getLastSavedBy()
Returns or sets the name of a last person who modified a presentation. Read/write String.
Returns: java.lang.String
setLastSavedBy(String value)
public final void setLastSavedBy(String value)
Returns or sets the name of a last person who modified a presentation. Read/write String.
Parameters:
Parameter | Type | Description |
---|---|---|
value | java.lang.String |
getRevisionNumber()
public final int getRevisionNumber()
Returns or sets the presentation revision number. Read/write int.
Returns: int
setRevisionNumber(int value)
public final void setRevisionNumber(int value)
Returns or sets the presentation revision number. Read/write int.
Parameters:
Parameter | Type | Description |
---|---|---|
value | int |
getContentStatus()
public final String getContentStatus()
Returns or sets the content status of a presentation. Read/write String.
Returns: java.lang.String
setContentStatus(String value)
public final void setContentStatus(String value)
Returns or sets the content status of a presentation. Read/write String.
Parameters:
Parameter | Type | Description |
---|---|---|
value | java.lang.String |
getContentType()
public final String getContentType()
Returns or sets the content type of a presentation. Read/write String.
Returns: java.lang.String
setContentType(String value)
public final void setContentType(String value)
Returns or sets the content type of a presentation. Read/write String.
Parameters:
Parameter | Type | Description |
---|---|---|
value | java.lang.String |
getHyperlinkBase()
public final String getHyperlinkBase()
Returns or sets the HyperlinkBase document property. Read/write String.
Returns: java.lang.String
setHyperlinkBase(String value)
public final void setHyperlinkBase(String value)
Returns or sets the HyperlinkBase document property. Read/write String.
Parameters:
Parameter | Type | Description |
---|---|---|
value | java.lang.String |
getCountOfCustomProperties()
public final int getCountOfCustomProperties()
Returns the number of custom properties actually contained in a collection. Read-only int.
Returns: int
getCustomPropertyName(int index)
public final String getCustomPropertyName(int index)
Return a custom property name at the specified index.
Parameters:
Parameter | Type | Description |
---|---|---|
index | int | The zero-based index of a custom property to get. |
Returns: java.lang.String - Custom property name at the specified index.
removeCustomProperty(String name)
public final boolean removeCustomProperty(String name)
Remove a custom property associated with a specified name.
Parameters:
Parameter | Type | Description |
---|---|---|
name | java.lang.String | Name of a custom property to remove. |
Returns: boolean - Return true if a property was removed, false overwise.
containsCustomProperty(String name)
public final boolean containsCustomProperty(String name)
Check presents of a custom property with a specified name.
Parameters:
Parameter | Type | Description |
---|---|---|
name | java.lang.String | Name of a custom property to check. |
Returns: boolean - Return true if property exists, false overwise.
get_Item(String name)
public final Object get_Item(String name)
Returns or sets the custom property associated with a specified name. Read/write Object.
Value can be int, float, String, boolean or Date.
Parameters:
Parameter | Type | Description |
---|---|---|
name | java.lang.String |
Returns: java.lang.Object
set_Item(String name, Object value)
public final void set_Item(String name, Object value)
Returns or sets the custom property associated with a specified name. Read/write Object.
Value can be int, float, String, boolean or Date.
Parameters:
Parameter | Type | Description |
---|---|---|
name | java.lang.String | |
value | java.lang.Object |
getCustomPropertyValue(String name, boolean[] value)
public final void getCustomPropertyValue(String name, boolean[] value)
Gets a named boolean value from the custom properties.
Parameters:
Parameter | Type | Description |
---|---|---|
name | java.lang.String | Name of the custom property to get |
value | boolean[] | Custom property value |
getCustomPropertyValue(String name, int[] value)
public final void getCustomPropertyValue(String name, int[] value)
Gets a named integer value from the custom properties.
Parameters:
Parameter | Type | Description |
---|---|---|
name | java.lang.String | Name of the custom property to get |
value | int[] | Custom property value |
getCustomPropertyValue(String name, Date[] value)
public final void getCustomPropertyValue(String name, Date[] value)
Gets a named DateTime value from the custom properties.
Parameters:
Parameter | Type | Description |
---|---|---|
name | java.lang.String | Name of the custom property to get |
value | java.util.Date[] | Custom property value |
getCustomPropertyValue(String name, String[] value)
public final void getCustomPropertyValue(String name, String[] value)
Gets a named string value from the custom properties.
Parameters:
Parameter | Type | Description |
---|---|---|
name | java.lang.String | Name of the custom property to get |
value | java.lang.String[] | Custom property value |
getCustomPropertyValue(String name, float[] value)
public final void getCustomPropertyValue(String name, float[] value)
Gets a named float value from the custom properties.
Parameters:
Parameter | Type | Description |
---|---|---|
name | java.lang.String | Name of the custom property to get |
value | float[] | Custom property value |
getCustomPropertyValue(String name, double[] value)
public final void getCustomPropertyValue(String name, double[] value)
Gets a named double value from the custom properties.
Parameters:
Parameter | Type | Description |
---|---|---|
name | java.lang.String | Name of the custom property to get. |
value | double[] | Custom property value |
setCustomPropertyValue(String name, boolean value)
public final void setCustomPropertyValue(String name, boolean value)
Sets a named boolean custom property.
Parameters:
Parameter | Type | Description |
---|---|---|
name | java.lang.String | Name of the custom property to set |
value | boolean | Custom property value |
setCustomPropertyValue(String name, int value)
public final void setCustomPropertyValue(String name, int value)
Sets a named integer custom property.
Parameters:
Parameter | Type | Description |
---|---|---|
name | java.lang.String | Name of the custom property to set |
value | int | Custom property value |
setCustomPropertyValue(String name, Date value)
public final void setCustomPropertyValue(String name, Date value)
Sets a named DateTime custom property.
Parameters:
Parameter | Type | Description |
---|---|---|
name | java.lang.String | Name of the custom property to set |
value | java.util.Date | Custom property value |
setCustomPropertyValue(String name, String value)
public final void setCustomPropertyValue(String name, String value)
Sets a named string custom property.
Parameters:
Parameter | Type | Description |
---|---|---|
name | java.lang.String | Name of the custom property to set |
value | java.lang.String | Custom property value |
setCustomPropertyValue(String name, float value)
public final void setCustomPropertyValue(String name, float value)
Sets a named float custom property.
Parameters:
Parameter | Type | Description |
---|---|---|
name | java.lang.String | Name of the custom property to set |
value | float | Custom property value |
setCustomPropertyValue(String name, double value)
public final void setCustomPropertyValue(String name, double value)
Sets a named double custom property.
Parameters:
Parameter | Type | Description |
---|---|---|
name | java.lang.String | Name of the custom property to set |
value | double | Custom property value |
clearCustomProperties()
public final void clearCustomProperties()
Removes all custom properties.
clearBuiltInProperties()
public final void clearBuiltInProperties()
Clears and sets default values for all builtIn properties.
deepClone()
public final Object deepClone()
Clones current object
Returns: java.lang.Object - Clone
cloneT()
public final IDocumentProperties cloneT()
Clones current object
Returns: IDocumentProperties - Clone