![]() |
||
Home Products Purchase Downloads Demos Forums Blogs Ticket Wiki API Corporate |
|
||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectcom.aspose.cells.BuiltInDocumentProperties
public class BuiltInDocumentProperties
Represents a collection of built-in document properties. Provides access to objects by their names (using an indexer) and via a set of typed properties that return values of appropriate types.
Method Summary | |
---|---|
DocumentProperty |
get(int index)
Gets a DocumentProperty object by index. |
DocumentProperty |
get(java.lang.String name)
Gets a DocumentProperty object by the name of the property. |
java.lang.String |
getAuthor()
Gets the name of the document's author. |
int |
getBytes()
Gets an estimate of the number of bytes in the excel file. |
java.lang.String |
getCategory()
Gets the category of the document. |
int |
getCharacters()
Gets an estimate of the number of characters in the excel file. |
int |
getCharactersWithSpaces()
Gets an estimate of the number of characters (including spaces) in the excel file. |
java.lang.String |
getComments()
Gets the document comments. |
java.lang.String |
getCompany()
Gets the company property. |
java.lang.String |
getContentStatus()
Gets the status of the document. |
java.lang.String |
getContentType()
Gets the content type of the document. |
int |
getCount()
Gets number of items in the collection. |
java.util.Date |
getCreatedTime()
Gets date of the document creation in UTC. |
java.lang.String |
getDocumentVersion()
Gets the status of the document. |
java.lang.String |
getKeywords()
Gets the document keywords. |
java.lang.String |
getLanguage()
Gets the Language of the document. |
java.util.Date |
getLastPrinted()
Gets the date when the document was last printed in UTC. |
java.lang.String |
getLastSavedBy()
Gets the name of the last author. |
java.util.Date |
getLastSavedTime()
Gets the time of the last save in UTC. |
int |
getLines()
Gets an estimate of the number of lines in the document. |
java.lang.String |
getManager()
Gets the manager property. |
java.lang.String |
getNameOfApplication()
Gets the name of the application. |
int |
getPages()
Gets an estimate of the number of pages in the document. |
int |
getParagraphs()
Gets an estimate of the number of paragraphs in the document. |
int |
getRevisionNumber()
Gets the document revision number. |
java.lang.String |
getSubject()
Gets the subject of the document. |
java.lang.String |
getTemplate()
Gets the informational name of the document template. |
java.lang.String |
getTitle()
Gets the title of the document. |
double |
getTotalEditingTime()
Gets the total editing time in minutes. |
int |
getVersion()
Gets the version number of the application that created the document. |
int |
getWords()
Gets an estimate of the number of words in the document. |
java.util.Iterator<DocumentProperty> |
iterator()
Returns an DocumentProperty iterator. |
void |
setAuthor(java.lang.String value)
Gets or sets the name of the document's author. |
void |
setBytes(int value)
Sets an estimate of the number of bytes in the excel file. |
void |
setCategory(java.lang.String value)
Sets the category of the document. |
void |
setCharacters(int value)
Sets an estimate of the number of characters in the excel file. |
void |
setCharactersWithSpaces(int value)
Sets an estimate of the number of characters (including spaces) in the excel file. |
void |
setComments(java.lang.String value)
Sets the document comments. |
void |
setCompany(java.lang.String value)
Sets the company property. |
void |
setContentStatus(java.lang.String value)
Sets the status of the document. |
void |
setContentType(java.lang.String value)
Sets the content type of the document. |
void |
setCreatedTime(java.util.Date value)
Sets date of the document creation in UTC. |
void |
setDocumentVersion(java.lang.String value)
Sets the version of the document. |
void |
setKeywords(java.lang.String value)
Sets the document keywords. |
void |
setLanguage(java.lang.String value)
Sets the Language of the document. |
void |
setLastPrinted(java.util.Date value)
Sets the date when the document was last printed in UTC. |
void |
setLastSavedBy(java.lang.String value)
Sets the name of the last author. |
void |
setLastSavedTime(java.util.Date value)
Sets the time of the last save in UTC. |
void |
setLines(int value)
Sets an estimate of the number of lines in the document. |
void |
setManager(java.lang.String value)
Gets the manager property. |
void |
setNameOfApplication(java.lang.String value)
Sets the name of the application. |
void |
setPages(int value)
Represents an estimate of the number of pages in the document. |
void |
setParagraphs(int value)
Sets an estimate of the number of paragraphs in the document. |
void |
setRevisionNumber(int value)
Sets the document revision number. |
void |
setSubject(java.lang.String value)
Sets the subject of the document. |
void |
setTemplate(java.lang.String value)
Sets the informational name of the document template. |
void |
setTitle(java.lang.String value)
Sets the title of the document. |
void |
setTotalEditingTime(double value)
Sets the total editing time in minutes. |
void |
setVersion(int value)
Sets the version number of the application that created the document. |
void |
setWords(int value)
Represents an estimate of the number of words in the document. |
Methods inherited from class java.lang.Object |
---|
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Method Detail |
---|
public int getCount()
public DocumentProperty get(java.lang.String name) throws java.lang.Exception
name
- The case-sensitive name of the property to retrieve.
java.lang.Exception
public DocumentProperty get(int index)
index
- Zero-based index of the DocumentProperty to return.
public java.lang.String getAuthor() throws java.lang.Exception
java.lang.Exception
public void setAuthor(java.lang.String value) throws java.lang.Exception
value
- the name of the document's author.
java.lang.Exception
public int getBytes() throws java.lang.Exception
java.lang.Exception
public void setBytes(int value) throws java.lang.Exception
value
- an estimate of the number of bytes in the excel file.
java.lang.Exception
public int getCharacters() throws java.lang.Exception
java.lang.Exception
public void setCharacters(int value) throws java.lang.Exception
value
- an estimate of the number of characters in the excel file.
java.lang.Exception
public int getCharactersWithSpaces() throws java.lang.Exception
java.lang.Exception
public void setCharactersWithSpaces(int value) throws java.lang.Exception
value
- an estimate of the number of characters (including spaces) in the excel file.
java.lang.Exception
public java.lang.String getComments() throws java.lang.Exception
java.lang.Exception
public void setComments(java.lang.String value) throws java.lang.Exception
value
- the document comments.
java.lang.Exception
public java.lang.String getCategory() throws java.lang.Exception
java.lang.Exception
public void setCategory(java.lang.String value) throws java.lang.Exception
value
- the category of the document.
java.lang.Exception
public java.lang.String getCompany() throws java.lang.Exception
java.lang.Exception
public void setCompany(java.lang.String value) throws java.lang.Exception
value
- the company property.
java.lang.Exception
public java.util.Date getCreatedTime() throws java.lang.Exception
java.lang.Exception
public void setCreatedTime(java.util.Date value) throws java.lang.Exception
value
- date of the document creation in UTC.
java.lang.Exception
public java.lang.String getKeywords() throws java.lang.Exception
java.lang.Exception
public void setKeywords(java.lang.String value) throws java.lang.Exception
value
- the document keywords.
java.lang.Exception
public java.util.Date getLastPrinted() throws java.lang.Exception
java.lang.Exception
public void setLastPrinted(java.util.Date value) throws java.lang.Exception
value
- the date when the document was last printed in UTC.
java.lang.Exception
public java.lang.String getLastSavedBy() throws java.lang.Exception
java.lang.Exception
public void setLastSavedBy(java.lang.String value) throws java.lang.Exception
value
- the name of the last author.
java.lang.Exception
public java.util.Date getLastSavedTime() throws java.lang.Exception
java.lang.Exception
public void setLastSavedTime(java.util.Date value) throws java.lang.Exception
value
- the time of the last save in UTC.
java.lang.Exception
public int getLines() throws java.lang.Exception
java.lang.Exception
public void setLines(int value) throws java.lang.Exception
value
- an estimate of the number of lines in the document.
java.lang.Exception
public java.lang.String getManager() throws java.lang.Exception
java.lang.Exception
public void setManager(java.lang.String value) throws java.lang.Exception
value
- the manager property.
java.lang.Exception
public java.lang.String getNameOfApplication() throws java.lang.Exception
java.lang.Exception
public void setNameOfApplication(java.lang.String value) throws java.lang.Exception
value
- the name of the application.
java.lang.Exception
public int getPages() throws java.lang.Exception
java.lang.Exception
public void setPages(int value) throws java.lang.Exception
value
- an estimate of the number of pages in the document.
java.lang.Exception
public int getParagraphs() throws java.lang.Exception
java.lang.Exception
public void setParagraphs(int value) throws java.lang.Exception
value
- an estimate of the number of paragraphs in the document.
java.lang.Exception
public int getRevisionNumber() throws java.lang.Exception
java.lang.Exception
public void setRevisionNumber(int value) throws java.lang.Exception
value
- the document revision number.
java.lang.Exception
public java.lang.String getSubject() throws java.lang.Exception
java.lang.Exception
public void setSubject(java.lang.String value) throws java.lang.Exception
value
- the subject of the document.
java.lang.Exception
public java.lang.String getTemplate() throws java.lang.Exception
java.lang.Exception
public void setTemplate(java.lang.String value) throws java.lang.Exception
value
- the informational name of the document template.
java.lang.Exception
public java.lang.String getTitle() throws java.lang.Exception
java.lang.Exception
public void setTitle(java.lang.String value) throws java.lang.Exception
value
- the title of the document.
java.lang.Exception
public double getTotalEditingTime() throws java.lang.Exception
java.lang.Exception
public void setTotalEditingTime(double value) throws java.lang.Exception
value
- the total editing time in minutes.
java.lang.Exception
public int getVersion() throws java.lang.Exception
java.lang.Exception
public void setVersion(int value) throws java.lang.Exception
value
- the version number of the application that created the document.
java.lang.Exception
public int getWords() throws java.lang.Exception
java.lang.Exception
public void setWords(int value) throws java.lang.Exception
value
- an estimate of the number of words in the document.
java.lang.Exception
public java.lang.String getContentType() throws java.lang.Exception
java.lang.Exception
public void setContentType(java.lang.String value) throws java.lang.Exception
value
- the content type of the document.
java.lang.Exception
public java.lang.String getContentStatus() throws java.lang.Exception
java.lang.Exception
public void setContentStatus(java.lang.String value) throws java.lang.Exception
value
- the status of the document.
java.lang.Exception
public java.lang.String getLanguage() throws java.lang.Exception
java.lang.Exception
public void setLanguage(java.lang.String value) throws java.lang.Exception
value
- the Language of the document.
java.lang.Exception
public java.lang.String getDocumentVersion() throws java.lang.Exception
java.lang.Exception
public void setDocumentVersion(java.lang.String value) throws java.lang.Exception
value
- the version of the document.
java.lang.Exception
public java.util.Iterator<DocumentProperty> iterator()
iterator
in interface java.lang.Iterable<DocumentProperty>
|
||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |