In This Topic
Gets the value at the specified path. The path can contain IPdfName objects which are interpreted as dictionary keys, or integers which are interpreted as IPdfArray indices.
Syntax
'Declaration
Public Shared Function GetAtPath(Of As IPdfObject)( _
ByVal As IPdfDict, _
ByVal ParamArray () As System.Object _
) As
public static GetAtPath<>(
IPdfDict ,
params System.object[]
)
where T: IPdfObject
Parameters
- dict
- The current dictionary.
- path
- The path to the value.
Type Parameters
- T
Return Value
The value associated with the specified path, or null if the value could not be found.
See Also