Version

AddRowEditNotificationInterface Property

Gets or sets the order of the interfaces that the grid looks for when committing or cancelling the addition of a new row to the data source.
Syntax
'Declaration
 
Public Property AddRowEditNotificationInterface As AddRowEditNotificationInterface
public AddRowEditNotificationInterface AddRowEditNotificationInterface {get; set;}
Remarks

This property determines whether the grid will look for the UltraGridRow.ListObject's implementation of the System.ComponentModel.IEditableObject interface and/or the containing list's System.ComponentModel.ICancelAddNew to detemine which interface should take priority when a new row is cancelled or committed, or if an interface implementation should be ignored entirely if the other interface implementation is present. For example, if the property is set to IEditableObjectAndICancelAddNew, the default resolved behavior, then the grid will call the ICancelAddNew implementation after calling the IEditableObject implementation.

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