[]
        
(Showing Draft Content)

GrapeCity.Documents.Word.DocumentProperty

Class DocumentProperty

Namespace
GrapeCity.Documents.Word
Assembly
GcDocs.Word.dll

Represents a document property.

public class DocumentProperty
Inheritance
object
DocumentProperty
Inherited Members
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()

Properties

LinkSource

Specifies the name of a bookmark in the current document from which the value of this custom document property should be extracted. If this property value is present, then any value shall be considered a cache and replaced with the value of this bookmark (if present) on save. If the bookmark is not present, then this link shall be considered broken and the cached value shall be retained.

public string LinkSource { get; set; }

Property Value

string

Name

Gets the name of the property.

public string Name { get; }

Property Value

string

Type

Gets the data type of the property.

public PropertyType Type { get; }

Property Value

PropertyType

Value

Gets or sets the value of the property.

public object Value { get; set; }

Property Value

object