Document Solutions for PDF
DS.Documents.Pdf Assembly / GrapeCity.Documents.Pdf.Spec Namespace / IPdfObjectExt Class / IsContentEqual Method / IsContentEqual(IPdfObject,IPdfObject,Boolean) Method
The first object to compare.
The second object to compare.
Indicates whether to resolve PDF references and compare actual values.

In This Topic
    IsContentEqual(IPdfObject,IPdfObject,Boolean) Method
    In This Topic
    Checks whether the content of two IPdfObjects is the same. If both objects are a null reference (Nothing in Visual Basic), they are considered to have the same content.
    Syntax
    'Declaration
     
    Public Overloads Shared Function IsContentEqual( _
       ByVal v1 As IPdfObject, _
       ByVal v2 As IPdfObject, _
       ByVal resolveReferences As System.Boolean _
    ) As System.Boolean
    public static System.bool IsContentEqual( 
       IPdfObject v1,
       IPdfObject v2,
       System.bool resolveReferences
    )

    Parameters

    v1
    The first object to compare.
    v2
    The second object to compare.
    resolveReferences
    Indicates whether to resolve PDF references and compare actual values.

    Return Value

    true if the objects have the same content, false otherwise.
    See Also