Document Solutions for PDF
DS.Documents.Pdf Assembly / GrapeCity.Documents.Pdf.Spec Namespace / IPdfDictExt Class / Set Method / Set(IPdfDict,PdfName,IPdfObject) Method
The current dictionary.
The key of the value to set.
The value to set.

In This Topic
    Set(IPdfDict,PdfName,IPdfObject) Method
    In This Topic
    Sets the value associated with the specified key. If value is a null reference (Nothing in Visual Basic), the entry specified by the key will be removed.
    Syntax
    'Declaration
     
    Public Overloads Shared Sub Set( _
       ByVal dict As IPdfDict, _
       ByVal key As PdfName, _
       ByVal value As IPdfObject _
    ) 
    public static void Set( 
       IPdfDict dict,
       PdfName key,
       IPdfObject value
    )

    Parameters

    dict
    The current dictionary.
    key
    The key of the value to set.
    value
    The value to set.
    See Also