Returns the metadata tag at the given index. This operation is slow when accessing all tags.
Namespace:
FreeImageAPI.MetadataAssembly: 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
Exception | Condition |
---|---|
System..::.ArgumentOutOfRangeException | index is greater or equal Count or index is less than zero. |