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




In This Topic
    CameraRaw Property
    In This Topic
    Gets or sets Camera Raw XMP schema properties.
    Syntax
    'Declaration
     
    Public Property CameraRaw As ImGearCameraRawXMPMetadata
    'Usage
     
    Dim instance As ImGearXMPMetadataRoot
    Dim value As ImGearCameraRawXMPMetadata
     
    instance.CameraRaw = value
     
    value = instance.CameraRaw
    public ImGearCameraRawXMPMetadata CameraRaw {get; set;}
    public: __property ImGearCameraRawXMPMetadata* get_CameraRaw();
    public: __property void set_CameraRaw( 
       ImGearCameraRawXMPMetadata* value
    );
    public:
    property ImGearCameraRawXMPMetadata^ CameraRaw {
       ImGearCameraRawXMPMetadata^ get();
       void set (    ImGearCameraRawXMPMetadata^ value);
    }

    Property Value

    ImageGear.Formats.XMP.CameraRaw.ImGearCameraRawXMPMetadata class value.
    Remarks

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

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

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

    See Also