Documents for PDF .NET Edition
GrapeCity.Documents.Pdf Assembly / GrapeCity.Documents.Pdf.Spec Namespace / IPdfDictHolderExt Class / TryGetPdfEnum<TEnum> Method
The current PDF dictionary holder.
The key of the value to get.
OUT: the value associated with the specified key.

In This Topic
    TryGetPdfEnum<TEnum> Method
    In This Topic
    Tries to get the GrapeCity.Documents.Pdf.PdfEnum<TEnum> struct associated with the specified key.

    Adds a warning to GrapeCity.Documents.Pdf.GcPdfDocument.ParserLog if the value exists but cannot be converted to GrapeCity.Documents.Pdf.PdfEnum<TEnum>.

    Syntax
    'Declaration
     
    Public Shared Function TryGetPdfEnum(Of TEnum As {New, Struct})( _
       ByVal pdh As IPdfDictHolder, _
       ByVal key As System.String, _
       ByRef value As PdfEnum(Of TEnum) _
    ) As System.Boolean
    public static System.bool TryGetPdfEnum<TEnum>( 
       IPdfDictHolder pdh,
       System.string key,
       out PdfEnum<TEnum> value
    )
    where TEnum: new(), struct

    Parameters

    pdh
    The current PDF dictionary holder.
    key
    The key of the value to get.
    value
    OUT: the value associated with the specified key.

    Type Parameters

    TEnum

    Return Value

    True if the key was found and the value could be converted to GrapeCity.Documents.Pdf.PdfEnum<TEnum>, false otherwise.
    See Also