ImageGear v26.3 - Updated
ImageGear.Core Assembly / ImageGear.Formats.EXIF Namespace / ImGearEXIFGPSMetadata Class / DestLatitudeReference Property




In This Topic
    DestLatitudeReference Property
    In This Topic
    Gets or sets DestLatitudeReference Tag value.
    Syntax
    'Declaration
     
    Public Property DestLatitudeReference As Nullable(Of ImGearEXIFGPSLatitudeReference)
    'Usage
     
    Dim instance As ImGearEXIFGPSMetadata
    Dim value As Nullable(Of ImGearEXIFGPSLatitudeReference)
     
    instance.DestLatitudeReference = value
     
    value = instance.DestLatitudeReference
    public Nullable<ImGearEXIFGPSLatitudeReference> DestLatitudeReference {get; set;}
    public: __property Nullable<ImGearEXIFGPSLatitudeReference> get_DestLatitudeReference();
    public: __property void set_DestLatitudeReference( 
       Nullable<ImGearEXIFGPSLatitudeReference> value
    );
    public:
    property Nullable<ImGearEXIFGPSLatitudeReference> DestLatitudeReference {
       Nullable<ImGearEXIFGPSLatitudeReference> get();
       void set (    Nullable<ImGearEXIFGPSLatitudeReference> value);
    }

    Property Value

    Nullable (boxed) ImGearEXIFGPSLatitudeReference enumeration value.
    Remarks
    This property accesses the GPSDestLatitudeRef tag. The tag indicates whether the latitude of the destination point is north or south latitude.

    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