ImageGear v26.3 - Updated
ImageGear.Core Assembly / ImageGear.Formats.IPTC Namespace / ImGearIPTCMetadata Class / FileFormatVersion Property




In This Topic
    FileFormatVersion Property
    In This Topic
    Gets or sets File Format Version IPTC dataset.
    Syntax
    'Declaration
     
    Public Property FileFormatVersion As Nullable(Of UShort)
    'Usage
     
    Dim instance As ImGearIPTCMetadata
    Dim value As Nullable(Of UShort)
     
    instance.FileFormatVersion = value
     
    value = instance.FileFormatVersion
    public Nullable<ushort> FileFormatVersion {get; set;}
    public: __property Nullable<ushort> get_FileFormatVersion();
    public: __property void set_FileFormatVersion( 
       Nullable<ushort> value
    );
    public:
    property Nullable<ushort> FileFormatVersion {
       Nullable<ushort> get();
       void set (    Nullable<ushort> value);
    }

    Property Value

    Nullable (boxed) ushort value.
    Remarks
    This property accesses the File Format Version DataSet (1:22). The DataSet contains a binary number representing the particular version of the File Format specified in 1:20.

    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 IPTC - NAA Information Interchange Model ver. 4.1 specification for tag usage details.

    See Also