[]
        
(Showing Draft Content)

GrapeCity.Documents.Excel.IDocumentProperty.Value

Value Property

Value

Gets or sets the value of the property.

Declaration
object Value { get; set; }
Property Value As Object
Property Value
Type Description
object

The value of the property.

Examples
IDocumentProperty property = workbook.CustomDocumentProperties.Add("Name", "Headings");
property.Value = 100;
object value = property.Value;