ImageGear v26.5 - Updated
ImageGear.Core Assembly / ImageGear.Core Namespace / ImGearMetadataHead Class / Child Property




In This Topic
    Child Property
    In This Topic
    Gets or sets reference to child node.
    Syntax
    'Declaration
     
    Public Property Child As ImGearMetadataNode
    'Usage
     
    Dim instance As ImGearMetadataHead
    Dim value As ImGearMetadataNode
     
    instance.Child = value
     
    value = instance.Child
    public ImGearMetadataNode Child {get; set;}
    public: __property ImGearMetadataNode* get_Child();
    public: __property void set_Child( 
       ImGearMetadataNode* value
    );
    public:
    property ImGearMetadataNode^ Child {
       ImGearMetadataNode^ get();
       void set (    ImGearMetadataNode^ value);
    }

    Property Value

    ImGearMetadataNode class object. May be null.
    Remarks
    Value being assigned must be stand-alone (ImGearMetadataNode.Parent == null) and not an instance of ImGearMetadataHead class.
    See Also