Version

AllowActiveRecordToBeFiltered Property

Gets/sets whether any current filter criteria will be applied to the active record on a cell change once the user has exited edit mode. If left to its default of null will resolve to false.
Syntax
'Declaration
 
Public Property AllowActiveRecordToBeFiltered As Nullable(Of Boolean)
public Nullable<bool> AllowActiveRecordToBeFiltered {get; set;}
Remarks

Note: filtering out the active record will trigger a commit of any pending changes (i.e. a call to System.ComponentModel.IEditableObject.EndEdit) unless the UpdateMode property is set to 'OnUpdate'. Also there may be cases where multiple cells need to be updated before the filter criteria should be applied. For these reasons we resolve this property to false by default. However, it is possible to change this setting on a cell by cell basis e.g. in the CellActivated event.

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