ArcFM Responder Mobile Developer Guide
IsLessThanOrEqual Method






The left-hand-side operand.
The right-hand-side operand.
Indicates whether the first value is less than or equal to the second value;
Syntax
'Declaration
 
Public Shared Function IsLessThanOrEqual( _
   ByVal left As System.Object, _
   ByVal right As System.Object _
) As System.Boolean
'Usage
 
Dim left As System.Object
Dim right As System.Object
Dim value As System.Boolean
 
value = DbCompare.IsLessThanOrEqual(left, right)
public static System.bool IsLessThanOrEqual( 
   System.object left,
   System.object right
)
public function IsLessThanOrEqual( 
    left: System.TObject;
    right: System.TObject
): System.Boolean; static; 
public static function IsLessThanOrEqual( 
   left : System.Object,
   right : System.Object
) : System.boolean;
public: static System.bool IsLessThanOrEqual( 
   System.Object* left,
   System.Object* right
) 
public:
static System.bool IsLessThanOrEqual( 
   System.Object^ left,
   System.Object^ right
) 

Parameters

left
The left-hand-side operand.
right
The right-hand-side operand.

Return Value

True if left <= right, otherwise false.
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