ArcObjects Library Reference  (System)    

IUID.Compare Method

Indicates if the two UID objects represent the same globally unique identifier.

[Visual Basic 6.0]
Function Compare(
    ByVal otherID As IUID _
) As Boolean
[Visual Basic .NET]
Public Function Compare ( _
    ByVal otherID As UID _
) As Boolean
[C#]
public bool Compare (
    UID otherID
);
[Java]
public Boolean compare (
    UID otherID
)
throws
    IOException,
    AutomationException
[C++]
HRESULT Compare(
  IUID* otherID,
  VARIANT_BOOL* bEqual
);
[C++]

Parameters

otherID [in]

  otherID is a parameter of type IUID

bEqual [out, retval]

  bEqual is a parameter of type VARIANT_BOOL

Product Availability

Available with ArcGIS Engine, ArcGIS Desktop, and ArcGIS Server.

Description

Returns a boolean indicating whether the specified UID object represents the same globally unique value (GUID) as this UID object.

See Also

IUID Interface