IsLess( ) method 
  
   (Windows only; GUI for .NET only)
  
  
   Compares the underlying values of the specified enumeration types and returns TRUE if the first value is less than the second value. Otherwise, it returns FALSE.
  
  
   Return type:  LOGICAL
  
  
   Access:  PUBLIC STATIC
  
  
  Syntax 
  
   
    
     
      
       EnumHelper:IsLess ( INPUT enum1  AS CLASS System.Enum, 
       enum2  AS CLASS System.Enum )
      
 
     
   
   
  
   enum1 
  
  
   Static reference to an enumeration value, or a reference to an enumeration type instance.
  
  
   enum2 
  
  
   Static reference to an enumeration value, or a reference to an enumeration type instance.
  
  
   Specify a static reference to an enumeration value using the following syntax:
  
  
  
   Where enum-type  is the type name of the enumeration and enum-member  is a member name of the enumeration. For example:
  
  
   
    
     
      
       System.Windows.Forms.AnchorStyles:Bottom
      
 
     
   
   
  
   For information on the System.Enum class and .NET enumeration types, refer to the .NET Framework class library.
  
  See also