Retrieves one of a set of metadata items of the same type.

The Open Packaging Format specification allows multiple instances of some metadata items (title, identifier, language, creator, contributor, and subject). This method allows access to a single instance of such items, identified by an index.

Namespace:  net.hazelhurst.epub
Assembly:  ePubLib (in ePubLib.dll) Version: 1.0.0.0 (1.0.0.0)

Syntax

C#
public string GetMultiItem(
	utilities..::.MetadataItem type,
	int index
)
Visual Basic (Declaration)
Public Function GetMultiItem ( _
	type As utilities..::.MetadataItem, _
	index As Integer _
) As String
Visual C++
public:
String^ GetMultiItem(
	utilities..::.MetadataItem type, 
	int index
)

Parameters

type
Type: net.hazelhurst.epub..::.utilities..::.MetadataItem
Member of the utilities.MetadataItem enumeration, identifies the type of metadata item to retrieve.
index
Type: System..::.Int32
Zero-based index identifying which item to retrieve.

Return Value

The contents of the selected metadata item.

See Also