IDocumentProperties

public interface IDocumentProperties

Represents properties of a presentation.

Methods

MethodDescription
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.
clearCustomProperties()Removes all custom properties.
clearBuiltInProperties()Clears and sets default values for all builtIn properties.
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.

getAppVersion()

public abstract String getAppVersion()

Returns the app version. Read-only String.

Returns: java.lang.String

getNameOfApplication()

public abstract String getNameOfApplication()

Returns or sets the name of the application. Read/write String.

Returns: java.lang.String

setNameOfApplication(String value)

public abstract void setNameOfApplication(String value)

Returns or sets the name of the application. Read/write String.

Parameters:

ParameterTypeDescription
valuejava.lang.String

getCompany()

public abstract String getCompany()

Returns or sets the company property. Read/write String.

Returns: java.lang.String

setCompany(String value)

public abstract void setCompany(String value)

Returns or sets the company property. Read/write String.

Parameters:

ParameterTypeDescription
valuejava.lang.String

getManager()

public abstract String getManager()

Returns or sets the manager property. Read/write String.

Returns: java.lang.String

setManager(String value)

public abstract void setManager(String value)

Returns or sets the manager property. Read/write String.

Parameters:

ParameterTypeDescription
valuejava.lang.String

getPresentationFormat()

public abstract String getPresentationFormat()

Returns or sets the intended format of a presentation. Read/write String.

Returns: java.lang.String

setPresentationFormat(String value)

public abstract void setPresentationFormat(String value)

Returns or sets the intended format of a presentation. Read/write String.

Parameters:

ParameterTypeDescription
valuejava.lang.String

getSharedDoc()

public abstract boolean getSharedDoc()

Determines whether the presentation is shared between multiple people. Read/write boolean.

Returns: boolean

setSharedDoc(boolean value)

public abstract void setSharedDoc(boolean value)

Determines whether the presentation is shared between multiple people. Read/write boolean.

Parameters:

ParameterTypeDescription
valueboolean

getApplicationTemplate()

public abstract String getApplicationTemplate()

Returns or sets the template of a application. Read/write String.

Returns: java.lang.String

setApplicationTemplate(String value)

public abstract void setApplicationTemplate(String value)

Returns or sets the template of a application. Read/write String.

Parameters:

ParameterTypeDescription
valuejava.lang.String

getTotalEditingTime()

public abstract double getTotalEditingTime()

Total editing time of a presentation. Read/write double.

Returns: double

setTotalEditingTime(double value)

public abstract void setTotalEditingTime(double value)

Total editing time of a presentation. Read/write double.

Parameters:

ParameterTypeDescription
valuedouble

getTitle()

public abstract String getTitle()

Returns or sets the title of a presentation. Read/write String.

Returns: java.lang.String

setTitle(String value)

public abstract void setTitle(String value)

Returns or sets the title of a presentation. Read/write String.

Parameters:

ParameterTypeDescription
valuejava.lang.String

getSubject()

public abstract String getSubject()

Returns or sets the subject of a presentation. Read/write String.

Returns: java.lang.String

setSubject(String value)

public abstract void setSubject(String value)

Returns or sets the subject of a presentation. Read/write String.

Parameters:

ParameterTypeDescription
valuejava.lang.String

getAuthor()

public abstract String getAuthor()

Returns or sets the author of a presentation. Read/write String.

Returns: java.lang.String

setAuthor(String value)

public abstract void setAuthor(String value)

Returns or sets the author of a presentation. Read/write String.

Parameters:

ParameterTypeDescription
valuejava.lang.String

getKeywords()

public abstract String getKeywords()

Returns or sets the keywords of a presentation. Read/write String.

Returns: java.lang.String

setKeywords(String value)

public abstract void setKeywords(String value)

Returns or sets the keywords of a presentation. Read/write String.

Parameters:

ParameterTypeDescription
valuejava.lang.String

getComments()

public abstract String getComments()

Returns or sets the comments of a presentation. Read/write String.

Returns: java.lang.String

setComments(String value)

public abstract void setComments(String value)

Returns or sets the comments of a presentation. Read/write String.

Parameters:

ParameterTypeDescription
valuejava.lang.String

getCategory()

public abstract String getCategory()

Returns or sets the category of a presentation. Read/write String.

Returns: java.lang.String

setCategory(String value)

public abstract void setCategory(String value)

Returns or sets the category of a presentation. Read/write String.

Parameters:

ParameterTypeDescription
valuejava.lang.String

getCreatedTime()

public abstract 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 abstract void setCreatedTime(Date value)

Returns the date a presentation was created. Values are in UTC. Read/write java.util.Date.

Parameters:

ParameterTypeDescription
valuejava.util.Date

getLastSavedTime()

public abstract Date getLastSavedTime()

Returns the date a presentation was last modified. Values are in UTC.P 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 abstract void setLastSavedTime(Date value)

Returns the date a presentation was last modified. Values are in UTC.P 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:

ParameterTypeDescription
valuejava.util.Date

getLastPrinted()

public abstract 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 abstract void setLastPrinted(Date value)

Returns the date when a presentation was printed last time. Read/write java.util.Date.

Parameters:

ParameterTypeDescription
valuejava.util.Date

getLastSavedBy()

public abstract 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 abstract void setLastSavedBy(String value)

Returns or sets the name of a last person who modified a presentation. Read/write String.

Parameters:

ParameterTypeDescription
valuejava.lang.String

getRevisionNumber()

public abstract int getRevisionNumber()

Returns or sets the presentation revision number. Read/write int.

Returns: int

setRevisionNumber(int value)

public abstract void setRevisionNumber(int value)

Returns or sets the presentation revision number. Read/write int.

Parameters:

ParameterTypeDescription
valueint

getContentStatus()

public abstract String getContentStatus()

Returns or sets the content status of a presentation. Read/write String.

Returns: java.lang.String

setContentStatus(String value)

public abstract void setContentStatus(String value)

Returns or sets the content status of a presentation. Read/write String.

Parameters:

ParameterTypeDescription
valuejava.lang.String

getContentType()

public abstract String getContentType()

Returns or sets the content type of a presentation. Read/write String.

Returns: java.lang.String

setContentType(String value)

public abstract void setContentType(String value)

Returns or sets the content type of a presentation. Read/write String.

Parameters:

ParameterTypeDescription
valuejava.lang.String

getHyperlinkBase()

public abstract String getHyperlinkBase()

Returns or sets the HyperlinkBase document property. Read/write String.

Returns: java.lang.String

setHyperlinkBase(String value)

public abstract void setHyperlinkBase(String value)

Returns or sets the HyperlinkBase document property. Read/write String.

Parameters:

ParameterTypeDescription
valuejava.lang.String

getCountOfCustomProperties()

public abstract int getCountOfCustomProperties()

Returns the number of custom properties actually contained in a collection. Read-only int.

Returns: int

getCustomPropertyName(int index)

public abstract String getCustomPropertyName(int index)

Return a custom property name at the specified index.

Parameters:

ParameterTypeDescription
indexintThe zero-based index of a custom property to get.

Returns: java.lang.String - Custom property name at the specified index.

removeCustomProperty(String name)

public abstract boolean removeCustomProperty(String name)

Remove a custom property associated with a specified name.

Parameters:

ParameterTypeDescription
namejava.lang.StringName of a custom property to remove.

Returns: boolean - Return true if a property was removed, false overwise.

containsCustomProperty(String name)

public abstract boolean containsCustomProperty(String name)

Check presents of a custom property with a specified name.

Parameters:

ParameterTypeDescription
namejava.lang.StringName of a custom property to check.

Returns: boolean - Return true if property exists, false overwise.

get_Item(String name)

public abstract Object get_Item(String name)

Returns or sets the custom property associated with a specified name. Read/write Object.


Value can be int, float, double, String, boolean or Date.

Parameters:

ParameterTypeDescription
namejava.lang.String

Returns: java.lang.Object

set_Item(String name, Object value)

public abstract 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, double, String, boolean or Date.

Parameters:

ParameterTypeDescription
namejava.lang.String
valuejava.lang.Object

clearCustomProperties()

public abstract void clearCustomProperties()

Removes all custom properties.

clearBuiltInProperties()

public abstract void clearBuiltInProperties()

Clears and sets default values for all builtIn properties.

getCustomPropertyValue(String name, boolean[] value)

public abstract void getCustomPropertyValue(String name, boolean[] value)

Gets a named boolean value from the custom properties.

Parameters:

ParameterTypeDescription
namejava.lang.StringName of the custom property to get
valueboolean[]Custom property value

getCustomPropertyValue(String name, int[] value)

public abstract void getCustomPropertyValue(String name, int[] value)

Gets a named integer value from the custom properties.

Parameters:

ParameterTypeDescription
namejava.lang.StringName of the custom property to get
valueint[]Custom property value

getCustomPropertyValue(String name, Date[] value)

public abstract void getCustomPropertyValue(String name, Date[] value)

Gets a named DateTime value from the custom properties.

Parameters:

ParameterTypeDescription
namejava.lang.StringName of the custom property to get
valuejava.util.Date[]Custom property value

getCustomPropertyValue(String name, String[] value)

public abstract void getCustomPropertyValue(String name, String[] value)

Gets a named string value from the custom properties.

Parameters:

ParameterTypeDescription
namejava.lang.StringName of the custom property to get
valuejava.lang.String[]Custom property value

getCustomPropertyValue(String name, float[] value)

public abstract void getCustomPropertyValue(String name, float[] value)

Gets a named float value from the custom properties.

Parameters:

ParameterTypeDescription
namejava.lang.StringName of the custom property to get
valuefloat[]Custom property value

getCustomPropertyValue(String name, double[] value)

public abstract void getCustomPropertyValue(String name, double[] value)

Gets a named double value from the custom properties.

Parameters:

ParameterTypeDescription
namejava.lang.StringName of the custom property to get.
valuedouble[]Custom property value

setCustomPropertyValue(String name, boolean value)

public abstract void setCustomPropertyValue(String name, boolean value)

Sets a named boolean custom property.

Parameters:

ParameterTypeDescription
namejava.lang.StringName of the custom property to set
valuebooleanCustom property value

setCustomPropertyValue(String name, int value)

public abstract void setCustomPropertyValue(String name, int value)

Sets a named integer custom property.

Parameters:

ParameterTypeDescription
namejava.lang.StringName of the custom property to set
valueintCustom property value

setCustomPropertyValue(String name, Date value)

public abstract void setCustomPropertyValue(String name, Date value)

Sets a named DateTime custom property.

Parameters:

ParameterTypeDescription
namejava.lang.StringName of the custom property to set
valuejava.util.DateCustom property value

setCustomPropertyValue(String name, String value)

public abstract void setCustomPropertyValue(String name, String value)

Sets a named string custom property.

Parameters:

ParameterTypeDescription
namejava.lang.StringName of the custom property to set
valuejava.lang.StringCustom property value

setCustomPropertyValue(String name, float value)

public abstract void setCustomPropertyValue(String name, float value)

Sets a named float custom property.

Parameters:

ParameterTypeDescription
namejava.lang.StringName of the custom property to set
valuefloatCustom property value

setCustomPropertyValue(String name, double value)

public abstract void setCustomPropertyValue(String name, double value)

Sets a named double custom property.

Parameters:

ParameterTypeDescription
namejava.lang.StringName of the custom property to set
valuedoubleCustom property value