Click or drag to resize

PdfTypeDictionaryAdd(String, PdfTypeBase) Method

Adds an element with the provided key and value to the IDictionary object.

Namespace: Patagames.Pdf.Net.BasicTypes
Assembly: Patagames.Pdf (in Patagames.Pdf.dll) Version: 4.94.2704
Syntax
public void Add(
	string key,
	PdfTypeBase value
)

Parameters

key  String
The string to use as the key of the element to add.
value  PdfTypeBase
The PdfTypeBase to use as the value of the element to add.

Implements

IDictionaryTKey, TValueAdd(TKey, TValue)
Exceptions
ExceptionCondition
ArgumentNullExceptionThe key or value is null.
ArgumentExceptionAn element with the same key already exists in the Dictionary.
See Also