Version

MeetsCriteria(FilterCondition) Method

Returns true if the row meets the criteria specified by the passed in filter condition.
Syntax
'Declaration
 
Public Overloads Function MeetsCriteria( _
   ByVal filterCondition As FilterCondition _
) As Boolean
public bool MeetsCriteria( 
   FilterCondition filterCondition
)

Parameters

filterCondition
An instance of FilterCondition containing information on the criteria.

Return Value

true if the row meets the criteria of the FilterCondition, false if it does not.
Remarks

Returns true if the row meets the criteria specified by the passed in filter condition.

Example
Following sample code shows a typical usage for MeetsCriteria method. It will filter out rows so that only the rows whose CustomerID field begins with the letter 'A' will be displayed.

Imports Infragistics.Shared
Imports Infragistics.Win
Imports Infragistics.Win.UltraWinGrid


    Private Sub UltraGrid1_InitializeLayout(ByVal sender As Object, ByVal e As Infragistics.Win.UltraWinGrid.InitializeLayoutEventArgs) Handles UltraGrid1.InitializeLayout
        ' Call RefreshFilters to cause the UltraGrid to reevaluate any filters and fire
        ' FilterRow event on every row.
        '
        e.Layout.RefreshFilters()
    End Sub

    Private Sub UltraGrid1_FilterRow(ByVal sender As Object, ByVal e As Infragistics.Win.UltraWinGrid.FilterRowEventArgs) Handles UltraGrid1.FilterRow
        Dim band As UltraGridBand = e.Row.Band
        If "Customers" = band.Key Then
            ' Create a filter condition that will only show rows whose CustomerID field begins with the letter 'A'.
            '
            Dim fc As FilterCondition = New FilterCondition(band.Columns("CustomerID"), FilterComparisionOperator.Like, "A*")

            ' Call MeetsCriteria method off the row to test if the row passes the filter.
            '
            If Not e.Row.MeetsCriteria(fc) Then
                e.RowFilteredOut = True
            Else
                e.RowFilteredOut = False
            End If
        End If
    End Sub
using Infragistics.Shared;
using Infragistics.Win;
using Infragistics.Win.UltraWinGrid;
using System.Diagnostics;


		private void ultraGrid1_InitializeLayout(object sender, Infragistics.Win.UltraWinGrid.InitializeLayoutEventArgs e)
		{
			// Call RefreshFilters to cause the UltraGrid to reevaluate any filters and fire
			// FilterRow event on every row.
			//
			e.Layout.RefreshFilters( );
		}

		private void ultraGrid1_FilterRow(object sender, Infragistics.Win.UltraWinGrid.FilterRowEventArgs e)
		{
			UltraGridBand band = e.Row.Band;
			if ( "Customers" == band.Key )
			{
				// Create a filter condition that will only show rows whose CustomerID field begins with the letter 'A'.
				//
				FilterCondition fc = new FilterCondition( band.Columns[ "CustomerID" ], FilterComparisionOperator.Like, "A*" );

				// Call MeetsCriteria method off the row to test if the row passes the filter.
				//
				if ( ! e.Row.MeetsCriteria( fc ) )
					e.RowFilteredOut = true;
				else
					e.RowFilteredOut = false;
			}
		}
Requirements

Target Platforms: Windows 10, Windows 8.1, Windows 8, Windows 7, Windows Server 2012, 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