[]
Represents built-in document properties.
public class BuiltInPropertyCollection : DocumentPropertyCollection, IEnumerable<DocumentProperty>, IEnumerable
Gets or sets the version number of the application that created the document.
public double? AplicationVersion { get; set; }
Gets or sets the name of the application.
public string ApplicationName { get; set; }
Gets or sets the name of the document's author.
public string Author { get; set; }
Gets or sets the category of the document.
public string Category { get; set; }
Gets or sets an estimate of the number of characters in the document.
public int? Characters { get; set; }
Gets or sets an estimate of the number of characters (including spaces) in the document.
public int? CharactersWithSpaces { get; set; }
Gets or sets the document comments.
public string Comments { get; set; }
Gets or sets the company property.
public string Company { get; set; }
Gets or sets date of the document creation in UTC.
public DateTime? CreatedTime { get; set; }
Gets or sets the signature of a digitally signed document.
public byte[] DigitalSignature { get; set; }
This property is a mechanism used by legacy documents to store the digital signature of its binary representation, and should be avoided in favor of the well-defined mechanism. Any use of this property should be for legacy compatibility only, and is application-defined.
Gets or sets the document headings and their names.
public object[] HeadingPairs { get; set; }
Specifies the base string used for evaluating relative hyperlinks in this document.
public string HyperlinkBase { get; set; }
Gets or sets the set of hyperlinks that were in this document when last saved.
public string[] HyperlinkList { get; set; }
Gets or sets whether one or more hyperlinks in the document were updated exclusively by a producer. The next producer to open this document shall update the hyperlink relationships with the new hyperlinks specified in this document.
public bool? HyperlinksChanged { get; set; }
Gets or sets an unambiguous document identifier.
public string Identifier { get; set; }
Gets or sets the document keywords.
public string Keywords { get; set; }
Gets or sets the value that identifies the document content language.
public string Language { get; set; }
Gets or sets the date when the document was last printed in UTC.
public DateTime? LastPrinted { get; set; }
Gets or sets the name of the last author.
public string LastSavedBy { get; set; }
Gets or sets the time of the last save in UTC.
public DateTime? LastSavedTime { get; set; }
Gets or sets an estimate of the number of lines in the document.
public int? Lines { get; set; }
Gets or sets whether hyperlinks in a document are up-to-date.
public bool? LinksUpToDate { get; set; }
Gets or sets the manager property.
public string Manager { get; set; }
Gets or sets an estimate of the number of pages in the document.
public int? Pages { get; set; }
Gets or sets an estimate of the number of paragraphs in the document.
public int? Paragraphs { get; set; }
Gets or sets the document revision number.
public int? RevisionNumber { get; set; }
Gets or sets the security level of a document as a numeric value.
public DocumentSecurity? Security { get; set; }
Gets or sets whether this document is currently shared between multiple producers. If true, producers should take care when updating the document.
public bool? SharedDocument { get; set; }
Gets or sets the document status.
public string Status { get; set; }
Gets or sets the subject of the document.
public string Subject { get; set; }
Gets or sets the informational name of the document template.
public string Template { get; set; }
Gets or sets the display mode of the document thumbnail. Set to true to enable scaling of the document thumbnail to the display. Set to false to enable cropping of the document thumbnail to show only sections that fits the display.
public bool? Thumbnail { get; set; }
Gets or sets the title of the document.
public string Title { get; set; }
Gets or sets the names of a parts in the document. These parts are conceptual representations of document sections.
public string[] TitlesOfParts { get; set; }
Gets or sets the total editing time in minutes.
public int? TotalEditingTime { get; set; }
Gets or sets the document version.
public string Version { get; set; }
Gets or sets an estimate of the number of words in the document.
public int? Words { get; set; }
Sets the property value.
protected void SetPropertyValue<T>(T value, string xmlName = null, string name = "")
value
TThe property value.
xmlName
stringThe property name to store in xml.
name
stringThe property name.
T
The property type