Document Solutions for PDF
DS.Documents.Pdf Assembly / GrapeCity.Documents.Pdf.Spec Namespace / IPdfDictExt Class / GetAtPath<T> Method
The current dictionary.
The path to the value.

In This Topic
    GetAtPath<T> Method
    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 T As IPdfObject)( _
       ByVal dict As IPdfDict, _
       ByVal ParamArray path() As System.Object _
    ) As T
    public static T GetAtPath<T>( 
       IPdfDict dict,
       params System.object[] path
    )
    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