The Open Packaging Format specification allows multiple instances of some metadata items (title, identifier, language, creator, contributor, and subject). This method allows the caller to add a new 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 void AddMultiItem(
	utilities..::.MetadataItem type,
	string value
)
Visual Basic (Declaration)
Public Sub AddMultiItem ( _
	type As utilities..::.MetadataItem, _
	value As String _
)
Visual C++
public:
void AddMultiItem(
	utilities..::.MetadataItem type, 
	String^ value
)

Parameters

type
Type: net.hazelhurst.epub..::.utilities..::.MetadataItem
Member of the utilities.MetadataItem enumeration, identifies the type of metadata item to add.
value
Type: System..::.String
The value to which the new metadata item should be set.

See Also