4 implementations of AllowEdit
System.ComponentModel.TypeConverter (1)
System\ComponentModel\BindingList.cs (1)
368
bool IBindingList.
AllowEdit
=> AllowEdit;
System.Data.Common (2)
System\Data\DataView.cs (1)
943
bool IBindingList.
AllowEdit
=> AllowEdit;
System\Data\DataViewManager.cs (1)
206
bool IBindingList.
AllowEdit
=> false;
System.Windows.Forms (1)
System\Windows\Forms\DataBinding\BindingSource.cs (1)
1634
public virtual bool
AllowEdit
3 references to AllowEdit
System.Windows.Forms (2)
System\Windows\Forms\DataBinding\BindingSource.cs (1)
1636
get => _state.HasFlag(BindingSourceStates.IsBindingList) ? ((IBindingList)List).
AllowEdit
: !List.IsReadOnly;
System\Windows\Forms\DataBinding\CurrencyManager.cs (1)
91
return bindingList.
AllowEdit
;
System.Windows.Forms.Tests (1)
System\Windows\Forms\BindingSourceTests.cs (1)
350
.Setup(p => p.
AllowEdit
)