Skip to content

Latest commit

 

History

History
40 lines (36 loc) · 1.27 KB

File metadata and controls

40 lines (36 loc) · 1.27 KB
title EditModeEnum | Microsoft Docs
ms.prod sql
ms.prod_service connectivity
ms.technology connectivity
ms.custom
ms.date 01/19/2017
ms.reviewer
ms.topic conceptual
apitype COM
f1_keywords
EditModeEnum
helpviewer_keywords
EditModeEnum enumeration [ADO]
ms.assetid 45d54b6e-db2c-4553-9fd0-528147d6da2f
author MightyPen
ms.author genemi

EditModeEnum

Specifies the editing status of a record.

Constant Value Description
adEditNone 0 Indicates that no editing operation is in progress.
adEditInProgress 1 Indicates that data in the current record has been modified but not saved.
adEditAdd 2 Indicates that the AddNew method has been called, and the current record in the copy buffer is a new record that has not been saved in the database.
adEditDelete 4 Indicates that the current record has been deleted.

ADO/WFC Equivalent

Package: com.ms.wfc.data

Constant
AdoEnums.EditMode.NONE
AdoEnums.EditMode.INPROGRESS
AdoEnums.EditMode.ADD
AdoEnums.EditMode.DELETE

Applies To

EditMode Property