ComponentOne DataGrid for WPF and Silverlight
C1.Silverlight.DataGrid Namespace / DataGridLength Structure / Equality Operator
The first instance of DataGridLength to compare.
The second instance of DataGridLength to compare.

In This Topic
    Equality Operator (DataGridLength)
    In This Topic
    Compares two DataGridLength structures for equality.
    Syntax
    'Declaration
     
    
    Public Operator =( _
       ByVal gl1 As DataGridLength, _
       ByVal gl2 As DataGridLength _
    ) As Boolean
    public bool operator ==( 
       DataGridLength gl1,
       DataGridLength gl2
    )

    Parameters

    gl1
    The first instance of DataGridLength to compare.
    gl2
    The second instance of DataGridLength to compare.

    Return Value

    true if the two instances of DataGridLength have the same value and DataGridUnitType; otherwise, false.
    See Also