Click or drag to resize

NumberMatch Class

The NumberMatch class is used in matching expressions to check numeric conditions.
Inheritance Hierarchy
SystemObject
  Sfs2X.Entities.MatchNumberMatch

Namespace:  Sfs2X.Entities.Match
Assembly:  SmartFox2X (in SmartFox2X.dll) Version: 1.8.0.0 (1.8.0)
Syntax
C#
public class NumberMatch : IMatcher

The NumberMatch type exposes the following members.

Properties
  NameDescription
Public propertySymbol
Returns the condition symbol of this matcher.
Public propertyType
Returns the type id of this matcher.
Top
Fields
  NameDescription
Public fieldStatic memberEQUALS
An instance of NumberMatch representing the following condition: number1 == number2.
Public fieldStatic memberGREATER_OR_EQUAL_THAN
An instance of NumberMatch representing the following condition: number1 >= number2.
Public fieldStatic memberGREATER_THAN
An instance of NumberMatch representing the following condition: number1 > number2.
Public fieldStatic memberLESS_OR_EQUAL_THAN
An instance of NumberMatch representing the following condition: number1 <= number2.
Public fieldStatic memberLESS_THAN
An instance of NumberMatch representing the following condition: number1 < number2.
Public fieldStatic memberNOT_EQUALS
An instance of NumberMatch representing the following condition: number1 != number2.
Top
See Also