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




In This Topic
    RightsManagement Property
    In This Topic
    Gets or sets Rights Management XMP schema properties.
    Syntax
    'Declaration
     
    Public Property RightsManagement As ImGearRightsManagementXMPMetadata
    'Usage
     
    Dim instance As ImGearXMPMetadataRoot
    Dim value As ImGearRightsManagementXMPMetadata
     
    instance.RightsManagement = value
     
    value = instance.RightsManagement
    public ImGearRightsManagementXMPMetadata RightsManagement {get; set;}
    public: __property ImGearRightsManagementXMPMetadata* get_RightsManagement();
    public: __property void set_RightsManagement( 
       ImGearRightsManagementXMPMetadata* value
    );
    public:
    property ImGearRightsManagementXMPMetadata^ RightsManagement {
       ImGearRightsManagementXMPMetadata^ get();
       void set (    ImGearRightsManagementXMPMetadata^ value);
    }

    Property Value

    ImageGear.Formats.XMP.RightsManagement.ImGearRightsManagementXMPMetadata class value.
    Remarks

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

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

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

    See Also