Version

AddRowEditNotificationInterface Enumeration

Enum for specifying the UltraGridOverride.AddRowEditNotificationInterface property.
Syntax
'Declaration
 
Public Enum AddRowEditNotificationInterface 
   Inherits System.Enum
public enum AddRowEditNotificationInterface : System.Enum 
Members
MemberDescription
DefaultUse the default functionality.
ICancelAddNewAndIEditableObjectThe ICancelAddNew implementation will be called, if available, followed by the IEditableObject implementation.
ICancelAddNewOrIEditableObjectThe ICancelAddNew implementation will be called. If this interface is not implemented, or the row is not an AddRow, the IEditableObject implementation will be called.
IEditableObjectAndICancelAddNewThe IEditableObject implementation will be called, if available, followed by the ICancelAddNew implementation.
IEditableObjectOrICancelAddNewThe IEditableObject implementation will be called, if available. Otherwise, if the row is an AddRow, the ICancelAddNew implemenation will be called.
Requirements

Target Platforms: Windows 10, Windows 8.1, Windows 8, Windows 7, Windows Server 2012, Windows 7, 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