Responder Developer Guide
IsEqualText Method


Version: 10.2.1a

Resource Center Home

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 Object, _
   ByVal y As Object, _
   ByVal ignoreCase As Boolean _
) As Boolean
'Usage
 
Dim x As Object
Dim y As Object
Dim ignoreCase As Boolean
Dim value As Boolean
 
value = DbCompare.IsEqualText(x, y, ignoreCase)
public static bool IsEqualText( 
   object x,
   object y,
   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 XP SP3 (32-bit and 64-bit), Windows 7 (32-bit and 64-bit)

Not all Operating Systems are supported on all products. Visit the ArcFM Solution Supported Versions page for full details.

See Also

Reference

DbCompare Class
DbCompare Members

 

 


Send Comment