ImageGear .NET - Updated
FocalLengthIn35mmFilm Property (ImGearEXIFMetadata)




ImageGear24.Formats.SimplifiedMetadata Assembly > ImageGear.Formats.EXIF Namespace > ImGearEXIFMetadata Class : FocalLengthIn35mmFilm Property
Gets or sets FocalLengthIn35mmFilm Tag value.
Syntax
'Declaration
 
Public Property FocalLengthIn35mmFilm As Nullable(Of UShort)
'Usage
 
Dim instance As ImGearEXIFMetadata
Dim value As Nullable(Of UShort)
 
instance.FocalLengthIn35mmFilm = value
 
value = instance.FocalLengthIn35mmFilm
public Nullable<ushort> FocalLengthIn35mmFilm {get; set;}
public: __property Nullable<ushort> get_FocalLengthIn35mmFilm();
public: __property void set_FocalLengthIn35mmFilm( 
   Nullable<ushort> value
);
public:
property Nullable<ushort> FocalLengthIn35mmFilm {
   Nullable<ushort> get();
   void set (    Nullable<ushort> value);
}

Property Value

Nullable (boxed) ushort value.
Remarks
This property accesses the FocalLengthIn35mmFilm tag. This tag indicates the equivalent focal length, assuming a 35mm film camera, in mm. A value of 0 means the focal length is unknown. Note that this tag differs from the FocalLength tag.

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