Share via


AfterDelete Event

Occurs immediately after a delete operation for a record is performed.

Note   If batch updating is used, that is, CursorAdapterBatchUpdateCount property is greater than 1, AfterDelete does not occur.

PROCEDURE Object.AfterDelete 
LPARAMETERS cFldState, lForce, cDeleteCmd, lResult

Parameters

  • cFldState
    Specifies the field states of the row being processed. This is the same value obtained from calling the following function:

    GETFLDSTATE(-1)
    

    For example, this value can be a character string consisting of deletion and edit status values for all fields in the table or cursor. If a table has five fields and only the first field has been edited, GETFLDSTATE() returns a value of 121111. The number 1 in the first position indicates that the deletion status has not changed.

  • lForce
    Specifies the value of the lForce parameter from the TABLEUPDATE( ) function.

  • cDeleteCmd
    Specifies the value of the cDeleteCmd parameter from the BeforeDelete event.

  • lResult
    Specifies the value returned by running TABLEUPDATE( ) for this record. If lResult is True (.T.), the field states are cleared for this record. If lResult is False (.F.), the field states are not cleared for this record. You can change the value of lResult to override the result as returned.

Remarks

You can call the AERROR( ) function to retrieve errors from upstream data sources.

See Also

Events | CursorAdapter Object Properties, Methods, and Events | GETFLDSTATE( ) Function | TABLEUPDATE( ) Function | BeforeDelete Event | AERROR( ) Function

Applies To: CursorAdapter Class