In This Topic
Copies from the current dictionary to all properties except those specified in .
can be null
, in that case it will be initialized if there are any properties to copy.
Syntax
'Declaration
Public Shared Sub CopyToExcluding( _
ByVal As IPdfDict, _
ByRef As PdfDict, _
ByVal As System.Collections.Generic.HashSet(Of PdfName) _
)
public static void CopyToExcluding(
IPdfDict ,
ref PdfDict ,
System.Collections.Generic.HashSet<PdfName>
)
Parameters
- dict
- The current dictionary.
- dest
- The PdfDict object (can be
null
). - propsToExclude
- The names of properties to exclude.
See Also