ImageGear v26.3 - Updated
ImageGear.Core Assembly / ImageGear.Core Namespace / ImGearMetadataLeaf Class / ImGearMetadataLeaf Constructor / ImGearMetadataLeaf Constructor(ImGearMetadataFormats,Int32,Object,Object,Boolean,String)
Type of file format to which metadata belongs. This allows you to store JPEG metadata under TIFF metadata.
Represents identifier of metadata for particular file format.
Actual data to be stored in metadata node.
Identifier of attached data type.
Specifies whether node should be ignored during page (document) saving or not.
Name of the leaf.




In This Topic
    ImGearMetadataLeaf Constructor(ImGearMetadataFormats,Int32,Object,Object,Boolean,String)
    In This Topic
    Initializes a new instance of the ImGearMetadataLeaf class with data attached to the node and its type as value of ImageGear.Formats.ImGearNativeDataTypes enum.
    Syntax
    'Declaration
     
    Public Function New( _
       ByVal format As ImGearMetadataFormats, _
       ByVal tag As Integer, _
       ByVal data As Object, _
       ByVal nativeType As Object, _
       ByVal ignoredOnSave As Boolean, _
       ByVal name As String _
    )
    'Usage
     
    Dim format As ImGearMetadataFormats
    Dim tag As Integer
    Dim data As Object
    Dim nativeType As Object
    Dim ignoredOnSave As Boolean
    Dim name As String
     
    Dim instance As New ImGearMetadataLeaf(format, tag, data, nativeType, ignoredOnSave, name)
    public ImGearMetadataLeaf( 
       ImGearMetadataFormats format,
       int tag,
       object data,
       object nativeType,
       bool ignoredOnSave,
       string name
    )
    public: ImGearMetadataLeaf( 
       ImGearMetadataFormats format,
       int tag,
       Object* data,
       Object* nativeType,
       bool ignoredOnSave,
       string* name
    )
    public:
    ImGearMetadataLeaf( 
       ImGearMetadataFormats format,
       int tag,
       Object^ data,
       Object^ nativeType,
       bool ignoredOnSave,
       String^ name
    )

    Parameters

    format
    Type of file format to which metadata belongs. This allows you to store JPEG metadata under TIFF metadata.
    tag
    Represents identifier of metadata for particular file format.
    data
    Actual data to be stored in metadata node.
    nativeType
    Identifier of attached data type.
    ignoredOnSave
    Specifies whether node should be ignored during page (document) saving or not.
    name
    Name of the leaf.

    Return Value

    A new instance of ImGearMetadataLeaf class.
    Remarks
    It is good for several leaves to refer to the same data object.
    See Also