Documents for PDF .NET Edition
GrapeCity.Documents.Pdf Assembly / GrapeCity.Documents.Pdf.Spec Namespace / IPdfDictHolderExt Class / CopyTo Method
The current PDF dictionary holder.
The target PDF dictionary object (can be null).
The names of properties to copy.

In This Topic
    CopyTo Method (IPdfDictHolderExt)
    In This Topic
    Copies from the current dictionary to dest properties specified in propNames.

    dest can be null, in that case it will be initialized if there are any properties to copy.

    Syntax
    'Declaration
     
    Public Shared Sub CopyTo( _
       ByVal pdh As IPdfDictHolder, _
       ByRef dest As PdfDict, _
       ByVal ParamArray propNames() As System.String _
    ) 
    public static void CopyTo( 
       IPdfDictHolder pdh,
       ref PdfDict dest,
       params System.string[] propNames
    )

    Parameters

    pdh
    The current PDF dictionary holder.
    dest
    The target PDF dictionary object (can be null).
    propNames
    The names of properties to copy.
    See Also