ActiveReports Developer 7
Less Than or Equal Operator
See Also 
GrapeCity.ActiveReports.Extensibility.v7 Assembly > GrapeCity.ActiveReports.Extensibility.Definition.Components Namespace > Length Structure : Less Than or Equal Operator

unit1
the Length
unit2
the Length

Glossary Item Box

All numeric and enumeration types define a "less than or equal" relational operator (<=) that returns true if the first operand is less than or equal to the second, false otherwise.

Syntax

Visual Basic (Declaration) 
Public Operator <=( _
   ByVal unit1 As Length, _
   ByVal unit2 As Length _
) As System.Boolean
C# 
public System.bool operator <=( 
   Length unit1,
   Length unit2
)

Parameters

unit1
the Length
unit2
the Length

See Also