ImageGear v26.3 - Updated
ImageGear.Core Assembly / ImageGear.Core Namespace / ImGearMetadataLeaf Class / Data Property




In This Topic
    Data Property (ImGearMetadataLeaf)
    In This Topic
    Gets or sets reference to opaque data stored in leaf. Type of object returned by this property depends on value of NativeType field.
    Syntax
    'Declaration
     
    Public Property Data As Object
    'Usage
     
    Dim instance As ImGearMetadataLeaf
    Dim value As Object
     
    instance.Data = value
     
    value = instance.Data
    public object Data {get; set;}
    public: __property Object* get_Data();
    public: __property void set_Data( 
       Object* value
    );
    public:
    property Object^ Data {
       Object^ get();
       void set (    Object^ value);
    }

    Property Value

    System.Object value.
    Remarks
    Represents (meta) data assigned to metadata node as System.Object. The following types of objects are allowed to be stored:
    • System.ValueType
    • System.String
    • System.Array

    Otherwise, an exception will be thrown.

    See Also