ActiveReports 8
Equality Operator
See Also 
GrapeCity.ActiveReports.Extensibility.v8 Assembly > GrapeCity.ActiveReports.Extensibility.Definition.Components Namespace > Length Structure : Equality Operator

unit1
the Length
unit2
the Length

Glossary Item Box

For predefined value types, the equality operator (==) returns true if the values of its operands are equal, false otherwise. For reference types other than string, == returns true if its two operands refer to the same object. For the string type, == compares the values of the strings.

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

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