Click or drag to resize

PdfTreeTKey, TValueItem(TKey) Property

Gets or sets the value associated with the specified key.

Namespace: SautinSoft.Pdf
Assembly: SautinSoft.Pdf (in SautinSoft.Pdf.dll) Version: 2024.8.8
Syntax
public TValue this[
	TKey key
] { get; set; }

Parameters

key  TKey
The key of the value to get or set.

Property Value

TValue
The value associated with the specified key. If the specified key is not found, a get operation returns default value. A set operation overrides existing or adds a new entry with the specified key and value.

Return Value

TValue
A value associated with the specified key. If the specified key is not found, default value is returned.
Exceptions
ExceptionCondition
ArgumentNullExceptionkey is .
See Also