Inherits Object.
|
virtual intrusive_ptr< Aspose::Cells::Systems::String > | GetName ()=0 |
| Returns the name of the property. More...
|
|
virtual intrusive_ptr< Aspose::Cells::Systems::Object > | GetValue ()=0 |
| Gets the value of the property. More...
|
|
virtual void | SetValue (intrusive_ptr< Aspose::Cells::Systems::Object > value)=0 |
| Sets the value of the property. More...
|
|
virtual bool | IsLinkedToContent ()=0 |
| Indicates whether this property is linked to content More...
|
|
virtual intrusive_ptr< Aspose::Cells::Systems::String > | GetSource ()=0 |
| The linked content source. More...
|
|
virtual Aspose::Cells::Properties::PropertyType | GetType ()=0 |
| Gets the data type of the property. More...
|
|
virtual bool | IsGeneratedName ()=0 |
| Returns true if this property does not have a name in the OLE2 storage and a unique name was generated only for the public API. More...
|
|
virtual intrusive_ptr< Aspose::Cells::Systems::String > | ToString ()=0 |
| Returns the property value as a string. More...
|
|
virtual Aspose::Cells::Systems::Int32 | ToInt ()=0 |
| Returns the property value as integer. More...
|
|
virtual Aspose::Cells::Systems::Double | ToDouble ()=0 |
| Returns the property value as double. More...
|
|
virtual intrusive_ptr< Aspose::Cells::Systems::DateTime > | ToDateTime ()=0 |
| Returns the property value as DateTime in local time zone. More...
|
|
virtual bool | ToBool ()=0 |
| Returns the property value as bool. More...
|
|
Represents a custom or built-in document property.
[C++]
intrusive_ptr<Aspose::Cells::Properties::ICustomDocumentPropertyCollection> customProperties =
workbook->GetIWorksheets()->GetICustomDocumentProperties();
intrusive_ptr<Aspose::Cells::Properties::IDocumentProperty> customProperty1 = customProperties->GetObjectByIndex(3);
intrusive_ptr<Aspose::Cells::Properties::IDocumentProperty> customProperty2 = customProperties->GetObjectByIndex(new String("Owner"));