Adds the text filter for the row filter.
Syntax
'Declaration
Public Sub AddTextFilter( _
ByVal column As System.Integer, _
ByVal As TextCompareType, _
ByVal As System.String _
)
'Usage
Dim instance As RowFilterBase
Dim column As System.Integer
Dim compareType As TextCompareType
Dim text As System.String
instance.AddTextFilter(column, compareType, text)
public void AddTextFilter(
System.int column,
TextCompareType ,
System.string
)
Parameters
- column
- The column index.
- compareType
- The text comparison type.
- text
- The text for comparison.
See Also