Version

UpdateMode Enumeration

Used for specifying DataPresenterBase.UpdateMode property.
Syntax
'Declaration
 
Public Enum UpdateMode 
   Inherits System.Enum
public enum UpdateMode : System.Enum 
Members
MemberDescription
OnCellChangeThe EndEdit is called on the data item when the user modifies a cell and exits the edit mode.
OnCellChangeOrLostFocusThe EndEdit is called on the data item when the user modifies a cell and exits the edit mode or when the DataPresenterBase loses the focus.
OnRecordChangeThe EndEdit is called on the data item when the user modifies cell(s) in a record and then activates a different record
OnRecordChangeOrLostFocusThe EndEdit is called on the data item when the user modifies cell(s) in a record and then activates a different record or the DataPresenterBase loses focus.
OnUpdateThe EndEdit is called on modified data items only when the DataPresenterCommands.CommitChangesToAllRecords or DataPresenterCommands.CommitChangesToActiveRecord command is executed or the associated DataRecords' DataRecord.Update is called.
Requirements

Target Platforms: Windows 10, Windows 8.1, Windows 8, Windows 7, Windows Server 2012, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also