Document Solutions for PDF
DS.Documents.Pdf Assembly / GrapeCity.Documents.Pdf.Spec Namespace / IPdfObjectExt Class / IsContentEqual Method / IsContentEqual(IPdfObject,IPdfObject) Method
The first object to compare.
The second object to compare.

In This Topic
    IsContentEqual(IPdfObject,IPdfObject) 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 _
    ) As System.Boolean
    public static System.bool IsContentEqual( 
       IPdfObject v1,
       IPdfObject v2
    )

    Parameters

    v1
    The first object to compare.
    v2
    The second object to compare.

    Return Value

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