ImageGear v26.3 - Updated
ImageGear.Core Assembly / ImageGear.Core Namespace / ImGearMetadataHead Class / Office Property




In This Topic
    Office Property
    In This Topic
    Gets or sets simplified access to Microsoft Office file metadata.
    Syntax
    'Declaration
     
    Public Property Office As ImGearFormatMetadata
    'Usage
     
    Dim instance As ImGearMetadataHead
    Dim value As ImGearFormatMetadata
     
    instance.Office = value
     
    value = instance.Office
    public ImGearFormatMetadata Office {get; set;}
    public: __property ImGearFormatMetadata* get_Office();
    public: __property void set_Office( 
       ImGearFormatMetadata* value
    );
    public:
    property ImGearFormatMetadata^ Office {
       ImGearFormatMetadata^ get();
       void set (    ImGearFormatMetadata^ value);
    }

    Property Value

    ImageGear.Formats.Office.Metadata.ImGearOfficeMetadata class value.
    Remarks
    The property returns null if metadata doesn't exist in the metadata tree.

    You can add metadata to a metadata tree, if it is not present, by creating a new instance of ImageGear.Formats.Office.Metadata.ImGearOfficeMetadata class and assigning it to the Office property. Only Microsoft Office formats support Office metadata.

    See Also