Writes an integer tag.

Namespace: HiComponents.IEvolution
Assembly: IEvolution2 (in IEvolution2.dll) Version: 10.1.0.0

Syntax

         
 C#  Visual Basic  Visual C++ 
public void SetInteger(
	int pageIndex,
	int tagCode,
	IETagType tagType,
	int val
)
Public Sub SetInteger ( _
	pageIndex As Integer, _
	tagCode As Integer, _
	tagType As IETagType, _
	val As Integer _
)
public:
void SetInteger(
	int pageIndex, 
	int tagCode, 
	IETagType tagType, 
	int val
)

Parameters

pageIndex
Int32
Page index (starting at 0 and ending at GetPagesCount-1).
tagCode
Int32
The tag code. This is not the index, but the actual TIFF code.
tagType
IETagType
The tag type. Allowed: Byte, Short, Long, SByte, SShort, SLong.
val
Int32
The value to write.

See Also