# C1.Win.FlexGrid.ConditionOperator

## Content

<div class="doc-site-dotnet-api-container">




  <h1 id="C1_Win_FlexGrid_ConditionOperator" data-uid="C1.Win.FlexGrid.ConditionOperator" class="text-break">ConditionOperator Enum
</h1>
  <div class="markdown level0 summary"><p>Represents operators used in filter conditions.</p>
</div>
  <div class="markdown level0 conceptual"></div>
  <h6><strong>Namespace</strong>: <a class="xref" href="C1.Win.FlexGrid.html">C1.Win.FlexGrid</a></h6>
  <h6><strong>Assembly</strong>: C1.Win.FlexGrid.10.dll</h6>
  <h5 id="C1_Win_FlexGrid_ConditionOperator_syntax">Syntax</h5>
  <div class="codewrapper">
    <pre><code class="lang-csharp hljs">public enum ConditionOperator</code></pre>
  </div>
  <div class="codewrapper">
    <pre><code class="lang-vbnet hljs">Public Enum ConditionOperator</code></pre>
  </div>
  <h3 id="fields">Fields
</h3>
  <table class="table table-bordered table-condensed">
    <thead>
      <tr>
        <th>Name</th>
        <th>Description</th>
      </tr>
    <thead>
    </thead></thead><tbody>
      <tr>
        <td id="C1_Win_FlexGrid_ConditionOperator_BeginsWith">BeginsWith</td>
        <td><p>Return true if the string representation of the value begins with the operator parameter.</p>
</td>
      </tr>
      <tr>
        <td id="C1_Win_FlexGrid_ConditionOperator_Contains">Contains</td>
        <td><p>Return true if the string representation of the value contains the operator parameter.</p>
</td>
      </tr>
      <tr>
        <td id="C1_Win_FlexGrid_ConditionOperator_DoesNotContain">DoesNotContain</td>
        <td><p>Return true if the string representation of the value does not contain the operator parameter.</p>
</td>
      </tr>
      <tr>
        <td id="C1_Win_FlexGrid_ConditionOperator_EndsWith">EndsWith</td>
        <td><p>Return true if the string representation of the value ends with the operator parameter.</p>
</td>
      </tr>
      <tr>
        <td id="C1_Win_FlexGrid_ConditionOperator_Equals">Equals</td>
        <td><p>Return true if the value equals the operator parameter.</p>
</td>
      </tr>
      <tr>
        <td id="C1_Win_FlexGrid_ConditionOperator_GreaterThan">GreaterThan</td>
        <td><p>Return true if the value is greater than the operator parameter.</p>
</td>
      </tr>
      <tr>
        <td id="C1_Win_FlexGrid_ConditionOperator_GreaterThanOrEqualTo">GreaterThanOrEqualTo</td>
        <td><p>Return true if the value is greater than or equal to the operator parameter.</p>
</td>
      </tr>
      <tr>
        <td id="C1_Win_FlexGrid_ConditionOperator_IsBlank">IsBlank</td>
        <td><p>Return true if the cell value is is null, or the cell value equals to DBNull.Value, or the string representation of the value is string.Empty.</p>
</td>
      </tr>
      <tr>
        <td id="C1_Win_FlexGrid_ConditionOperator_IsDistinct">IsDistinct</td>
        <td><p>Returns true for the first the cell value entry in the filtered column according with the grid sorting order.</p>
</td>
      </tr>
      <tr>
        <td id="C1_Win_FlexGrid_ConditionOperator_IsDuplicate">IsDuplicate</td>
        <td><p>Returns true if the cell value occurs more than once in the filtered column.</p>
</td>
      </tr>
      <tr>
        <td id="C1_Win_FlexGrid_ConditionOperator_IsUnique">IsUnique</td>
        <td><p>Returns true if the cell value occurs once in the filtered column.</p>
</td>
      </tr>
      <tr>
        <td id="C1_Win_FlexGrid_ConditionOperator_LessThan">LessThan</td>
        <td><p>Return true if the value is less than the operator parameter.</p>
</td>
      </tr>
      <tr>
        <td id="C1_Win_FlexGrid_ConditionOperator_LessThanOrEqualTo">LessThanOrEqualTo</td>
        <td><p>Return true if the value is less than or equal to the operator parameter.</p>
</td>
      </tr>
      <tr>
        <td id="C1_Win_FlexGrid_ConditionOperator_None">None</td>
        <td><p>Disables the operator.</p>
</td>
      </tr>
      <tr>
        <td id="C1_Win_FlexGrid_ConditionOperator_NotEquals">NotEquals</td>
        <td><p>Return true if the value does not equal the operator parameter.</p>
</td>
      </tr>
      <tr>
        <td id="C1_Win_FlexGrid_ConditionOperator_Today">Today</td>
        <td><p>Returns true if the cell value equals current date. Filter with this operator can be applied for DateTime columns only.</p>
</td>
      </tr>
    </tbody>
  </table>
</div>
