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 TryGetAtPath(Of As IPdfObject)( _
ByVal As IPdfDict, _
ByRef As , _
ByRef As System.Boolean, _
ByVal As System.Boolean, _
ByVal ParamArray () As System.Object _
) As System.Boolean
public static System.bool TryGetAtPath<>(
IPdfDict ,
out ,
out System.bool ,
System.bool ,
params System.object[]
)
where T: IPdfObject
Parameters
- dict
- The current dictionary.
- value
- OUT: The value.
- isNull
- OUT: Indicates whether the value is PDF null.
- addWarning
- Indicates whether to add a warning to GrapeCity.Documents.Pdf.GcPdfDocument.ParserLog if errors occur.
- 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