<< Click to Display Table of Contents >> AdoFilterGroupEnum() Function |
![]() ![]() ![]() |
All the values of the Filtergroup Enum:
The type of action to be performed when SetPermissions is called.
FUNCTION AdoFilterGroupEnum ( ) AS ARRAY
ARRAY Every row in this array has 2 values:
• The numeric value of the Enum value
• A text representation of this value
This array can be used to validate values, and to print a meaningful description of the values during debugging You can pass this array to the AdoEnum2Str() function to convert the value of an Enum to a string
List of possible values
adFilterNone | 0 Removes the current filter and restores all records to view. |
adFilterPendingRecords | 1 Only records that have changed but have not yet been sent to the server. Applicable only for batch update mode. |
adFilterAffectedRecords | 2 Only records affected by the last Delete, Resync, UpdateBatch, or CancelBatch call. |
adFilterFetchedRecords | 3 Records in the current cache- that is, the results of the last call to retrieve records from the database. |
adFilterConflictingRecords | 5 Records that failed the last batch update attempt. |
Enums, AdoEnum2Str(), AdoStr2Enum()