ImageGear .NET - Updated
ExifVersion Property (ImGearEXIFMetadata)




ImageGear24.Formats.SimplifiedMetadata Assembly > ImageGear.Formats.EXIF Namespace > ImGearEXIFMetadata Class : ExifVersion Property
Gets or sets ExifVersion Tag value.
Syntax
'Declaration
 
Public Property ExifVersion As Byte()
'Usage
 
Dim instance As ImGearEXIFMetadata
Dim value() As Byte
 
instance.ExifVersion = value
 
value = instance.ExifVersion
public byte[] ExifVersion {get; set;}
public: __property byte[]* get_ExifVersion();
public: __property void set_ExifVersion( 
   byte[]* value
);
public:
property array<byte>^ ExifVersion {
   array<byte>^ get();
   void set (    array<byte>^ value);
}

Property Value

Array of bytes.
Remarks
This property accesses the ExifVersion tag. The tag specifies the version of this standard supported.

Get accessor returns the tag value if the tag is present in the metadata tree, or null otherwise.

Set accessor replaces the current tag value if the tag is present in the metadata tree, adds the tag if it was not present, or deletes the tag if a null value is passed.

See the EXIF 2.2 specification for tag usage details.

See Also

Reference

ImGearEXIFMetadata Class
ImGearEXIFMetadata Members