ArcFM Responder Mobile Developer Guide
IsEqualText Method






First value to compare.
Second value to compare.
A Boolean indicating a case-sensitive or insensitive comparison. (true indicates a case-insensitive comparison.)
Compares two specified objects as strings, ignoring or honoring their case.
Syntax
'Declaration
 
Public Shared Function IsEqualText( _
   ByVal x As System.Object, _
   ByVal y As System.Object, _
   ByVal ignoreCase As System.Boolean _
) As System.Boolean
'Usage
 
Dim x As System.Object
Dim y As System.Object
Dim ignoreCase As System.Boolean
Dim value As System.Boolean
 
value = DbCompare.IsEqualText(x, y, ignoreCase)
public static System.bool IsEqualText( 
   System.object x,
   System.object y,
   System.bool ignoreCase
)
public function IsEqualText( 
    x: System.TObject;
    y: System.TObject;
    ignoreCase: System.Boolean
): System.Boolean; static; 
public static function IsEqualText( 
   x : System.Object,
   y : System.Object,
   ignoreCase : System.boolean
) : System.boolean;
public: static System.bool IsEqualText( 
   System.Object* x,
   System.Object* y,
   System.bool ignoreCase
) 
public:
static System.bool IsEqualText( 
   System.Object^ x,
   System.Object^ y,
   System.bool ignoreCase
) 

Parameters

x
First value to compare.
y
Second value to compare.
ignoreCase
A Boolean indicating a case-sensitive or insensitive comparison. (true indicates a case-insensitive comparison.)

Return Value

True if the values are equivalent, otherwise false.
Remarks
This method converts the arguments to strings and then performs a string comparison.
Requirements

Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also

Reference

DbCompare Class
DbCompare Members

Send Feedback