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 > CodecsEnumTagsEventArgs Class : MetadataType Property



Gets the tagged data type.

Syntax

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

Return Value

The tagged data type. Valid values are:

ValueMeaning
RasterTagMetadataDataType.ByteByte
RasterTagMetadataDataType.AsciiByte in the range of 0 to 255
RasterTagMetadataDataType.SByteByte used as signed number in the range of -128 to +127
RasterTagMetadataDataType.UndefinedByte, with application-defined usage
RasterTagMetadataDataType.UInt16Two bytes, unsigned
RasterTagMetadataDataType.Int16Two bytes, signed
RasterTagMetadataDataType.UInt32Four bytes, unsigned
RasterTagMetadataDataType.Int32Four bytes, signed
RasterTagMetadataDataType.SingleFour bytes used as a floating point number
RasterTagMetadataDataType.DoubleEight bytes used as a double-precision floating point number
RasterTagMetadataDataType.URationalEight bytes, used as a pair of unsigned long integers, where the first number is the numerator and the second is the denominator of a fraction
RasterTagMetadataDataType.RationalEight bytes, used as a pair of signed long integers, where the first number is the numerator and the second is the denominator of a fraction

Example

For an example, refer to RasterCodecs.TagFound.

Requirements

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

See Also