| 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.
For an example, refer to RasterCodecs.GeoKeyFound.
Target Platforms: Silverlight, Windows XP, Windows Server 2003 family, Windows Server 2008 family, Windows Vista, Windows 7, MAC OS/X (Intel Only)
Copy Code