Sets the value 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 the caller to set 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 void SetMultiItem(
	utilities..::.MetadataItem type,
	int index,
	string value
)
Visual Basic (Declaration)
Public Sub SetMultiItem ( _
	type As utilities..::.MetadataItem, _
	index As Integer, _
	value As String _
)
Visual C++
public:
void SetMultiItem(
	utilities..::.MetadataItem type, 
	int index, 
	String^ value
)

Parameters

type
Type: net.hazelhurst.epub..::.utilities..::.MetadataItem
Member of the utilities.MetadataItem enumeration, identifies the type of metadata item to set.
index
Type: System..::.Int32
Zero-based index identifying which item to set.
value
Type: System..::.String
The new value for the selected item.

See Also