PdfTreeTKey, TValueItem Property |
Gets or sets the value associated with the specified key.
Namespace: SautinSoft.PdfAssembly: SautinSoft.Pdf (in SautinSoft.Pdf.dll) Version: 2024.11.26
Syntax public TValue this[
TKey key
] { get; set; }
Public Default Property Item (
key As TKey
) As TValue
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 Exception | Condition |
---|
ArgumentNullException | key is . |
See Also