LEADTOOLS Image File Support (Leadtools.Codecs assembly) Send comments on this topic. | Back to Introduction - All Topics | Help Version 17.0.3.29
MetadataType Property
See Also 
Leadtools.Codecs Namespace > CodecsEnumGeoKeysEventArgs Class : MetadataType Property



Gets the type of GeoKey.

Syntax

Visual Basic (Declaration) 
Public ReadOnly Property MetadataType As RasterTagMetadataDataType
Visual Basic (Usage)Copy Code
Dim instance As CodecsEnumGeoKeysEventArgs
Dim value As RasterTagMetadataDataType
 
value = instance.MetadataType
C# 
public RasterTagMetadataDataType MetadataType {get;}
C++/CLI 
public:
property RasterTagMetadataDataType MetadataType {
   RasterTagMetadataDataType get();
}

Property Value

The type of the GeoKey This indicates whether the data pointed to by Buffer is SHORT, DOUBLE or ASCII. Possible values are:

Value Meaning
RasterTagMetadataDataType.Int16 Two bytes, unsigned.
RasterTagMetadataDataType.Double Eight bytes used as a double-precision floating-point number
RasterTagMetadataDataType.Ascii Byte in the range of 0 to 255. Null-terminated

You can also construct a new Leadtools.RasterTagMetadata object from the data stored in this CodecsEnumGeoKeysEventArgs using the ToRasterTagMetadata method.

Example

For an example, refer to RasterCodecs.GeoKeyFound.

Requirements

Target Platforms: Silverlight, Windows XP, Windows Server 2003 family, Windows Server 2008 family, Windows Vista, Windows 7, MAC OS/X (Intel Only)

See Also