Leadtools Send comments on this topic. | Back to Introduction - All Topics | Help Version 16.5.9.25
RasterTagMetadata Constructor(Int32,RasterTagMetadataDataType,Byte[])
See Also 
Leadtools Namespace > RasterTagMetadata Class > RasterTagMetadata Constructor : RasterTagMetadata Constructor(Int32,RasterTagMetadataDataType,Byte[])



id
The tag id
dataType
The data type of the tag
data
The data for the tag
Initializes a new instance of RasterTagMetadata with the specified values.

Syntax

Visual Basic (Declaration)  
Public Function New( _
   ByVal id As Integer, _
   ByVal dataType As RasterTagMetadataDataType, _
   ByVal data() As Byte _
)
Visual Basic (Usage) Copy Code
Dim id As Integer
Dim dataType As RasterTagMetadataDataType
Dim data() As Byte
 
Dim instance As RasterTagMetadata(id, dataType, data)
C#  
public RasterTagMetadata( 
   int id,
   RasterTagMetadataDataType dataType,
   byte[] data
)
C++/CLI  
public:
RasterTagMetadata( 
   int id,
   RasterTagMetadataDataType dataType,
   array<byte>^ data
)

Parameters

id
The tag id
dataType
The data type of the tag
data
The data for the tag

Example

For an example, refer to RasterTagMetadata.

Requirements

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

See Also