ImageGear .NET - Updated
DestLongitudeReference Property




ImageGear24.Formats.SimplifiedMetadata Assembly > ImageGear.Formats.EXIF Namespace > ImGearEXIFGPSMetadata Class : DestLongitudeReference Property
Gets or sets DestLongitudeReference Tag value.
Syntax
'Declaration
 
Public Property DestLongitudeReference As Nullable(Of ImGearEXIFGPSLongitudeReference)
'Usage
 
Dim instance As ImGearEXIFGPSMetadata
Dim value As Nullable(Of ImGearEXIFGPSLongitudeReference)
 
instance.DestLongitudeReference = value
 
value = instance.DestLongitudeReference
public Nullable<ImGearEXIFGPSLongitudeReference> DestLongitudeReference {get; set;}
public: __property Nullable<ImGearEXIFGPSLongitudeReference> get_DestLongitudeReference();
public: __property void set_DestLongitudeReference( 
   Nullable<ImGearEXIFGPSLongitudeReference> value
);
public:
property Nullable<ImGearEXIFGPSLongitudeReference> DestLongitudeReference {
   Nullable<ImGearEXIFGPSLongitudeReference> get();
   void set (    Nullable<ImGearEXIFGPSLongitudeReference> value);
}

Property Value

Nullable (boxed) ImGearEXIFGPSLongitudeReference enumeration value.
Remarks
This property accesses the GPSDestLongitudeRef tag. The tag indicates whether the longitude of the destination point is east or west longitude.

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

ImGearEXIFGPSMetadata Class
ImGearEXIFGPSMetadata Members
ImGearEXIFGPSLongitudeReference Enumeration