Returns the metadata tag at the given index. This operation is slow when accessing all tags.

Namespace:  FreeImageAPI.Metadata
Assembly:  FreeImageNET (in FreeImageNET.dll)

Syntax

C#
public MetadataTag this[
	int index
] { get; }
Visual Basic (Declaration)
Public ReadOnly Default Property Item ( _
	index As Integer _
) As MetadataTag
Visual C++
public:
property MetadataTag^ default[int index] {
	MetadataTag^ get (int index);
}

Parameters

index
Type: System..::.Int32
Index of the tag.

Return Value

The metadata tag.

Exceptions

ExceptionCondition
System..::.ArgumentOutOfRangeException index is greater or equal Count or index is less than zero.

Version Information

FreeImage.NET

Supported in: 3.11.0, 3.12.0, 3.13.0, 3.13.1

See Also