TUpdateKind defines the values for the UpdateKind parameter of OnUpdateError and OnUpdateRecord event handlers.
TUpdateKind = ( ukModify, ukInsert, ukDelete );
enum TUpdateKind { ukModify, ukInsert, ukDelete };
The TUpdateKind type defines the possible values for the UpdateKind parameter of OnUpdateError and OnUpdateRecord event handlers, as described in the following table:
|
Value |
Description |
|
ukModify |
The update to the record is a modification to the record's contents. |
|
ukInsert |
The update is the insertion of a new record. |
|
ukDelete |
The update is the deletion of a record. |
|
Copyright(C) 2009 Embarcadero Technologies, Inc. All Rights Reserved.
|
|
What do you think about this topic? Send feedback!
|