| |
|
|
|
|
RemoveSearchColumn Method
Removes an item from SearchColumns collection.
[Visual Basic .NET]
Public Function RemoveSearchColumn(ByVal ColumnName As String) As Boolean
Public Function RemoveSearchColumn(ByVal Index As Integer) As Boolean
|
[C#]
public Boolean RemoveSearchColumn(String ColumnName);
public Boolean RemoveSearchColumn(Int32 Index);
|
ColumnName
If you use this override, method finds and removes a column name which is equal to value of the ColumnName parameter
Index
Removes a column name at specific position in ColumnNames collection.
True, if method found and removed a word.
False, if word does not exist in ColumnNames collection.
You can use this method to remove a specific column and disable searching of it. You must have at least one column in ColumnNames to build a valid SQL query.
|
|
|
| |