For a list of all members of this type, see ITable members.
| Name | Description |
 | ApplyFilter | This method is called to set a row filter on the rows of the table. The syntax of the passed in string is "<FieldName>=<Value>". The method will only be called if the SupportsFiltering Property returns true. If it doesn't, you don't need to implement this method and may safely throw a NotImplementedException. Be aware that your data provider will not be able to support drill down reporting in this case, however. |
 | ApplySort | This method is called to set a sorting on the rows of the table. It will only be called if the SupportsSorting Property returns true. If your data provider doesn't support sorting, you don't need to implement this method and may safely throw a NotImplementedException. |
Top