ImageGear v26.3 - Updated
ImageGear.Core Assembly / ImageGear.Formats.XMP Namespace / ImGearXMPMetadataRoot Class / Basic Property




In This Topic
    Basic Property
    In This Topic
    Gets or sets Basic XMP schema properties.
    Syntax
    'Declaration
     
    Public Property Basic As ImGearBasicXMPMetadata
    'Usage
     
    Dim instance As ImGearXMPMetadataRoot
    Dim value As ImGearBasicXMPMetadata
     
    instance.Basic = value
     
    value = instance.Basic
    public ImGearBasicXMPMetadata Basic {get; set;}
    public: __property ImGearBasicXMPMetadata* get_Basic();
    public: __property void set_Basic( 
       ImGearBasicXMPMetadata* value
    );
    public:
    property ImGearBasicXMPMetadata^ Basic {
       ImGearBasicXMPMetadata^ get();
       void set (    ImGearBasicXMPMetadata^ value);
    }

    Property Value

    ImageGear.Formats.XMP.Basic.ImGearBasicXMPMetadata class value.
    Remarks

    If metadata does not contain XMP properties belonging to the Basic scheme, the property returns null.

    If the metadata does not have Basic XMP properties, and you need to add such properties, create a new instance of the ImageGear.Formats.XMP.Basic.ImGearBasicXMPMetadata class, assign it to this property, and then add XMP properties using corresponding properties of the ImageGear.Formats.XMP.Basic.ImGearBasicXMPMetadata class.

    If you need to remove Basic XMP schema properties from the metadata, set this property to null.

    See Also