Leadtools.Codecs Send comments on this topic. | Back to Introduction - All Topics | Help Version 16.5.9.25
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();
}

Return Value

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

ValueMeaning
RasterTagMetadataDataType.Int16Two bytes, unsigned.
RasterTagMetadataDataType.DoubleEight bytes used as a double-precision floating-point number
RasterTagMetadataDataType.AsciiByte in the range of 0 to 255. Null-terminated

Example

For an example, refer to RasterCodecs.GeoKeyFound.

Requirements

Target Platforms: Microsoft .NET Framework 3.0, Windows XP, Windows Server 2003 family, Windows Server 2008 family

See Also