2 overrides of IsValueEditable
System.Windows.Forms (2)
winforms\Managed\System\WinForms\PropertyGridInternal\ArrayElementGridEntry.cs (1)
42public override bool IsValueEditable {
winforms\Managed\System\WinForms\PropertyGridInternal\PropertyDescriptorGridEntry.cs (1)
211public override bool IsValueEditable {
11 references to IsValueEditable
System.Windows.Forms (11)
winforms\Managed\System\WinForms\PropertyGridInternal\ArrayElementGridEntry.cs (1)
44return ParentGridEntry.IsValueEditable;
winforms\Managed\System\WinForms\PropertyGridInternal\GridEntry.cs (4)
734return this.IsValueEditable && (this.Flags & GridEntry.FLAG_TEXT_EDITABLE) != 0; 809return(this.Flags & GridEntry.FLAG_CUSTOM_EDITABLE) != 0 && (IsValueEditable || (Flags & GridEntry.FLAG_READONLY_EDITABLE) !=0); 976return ForceReadOnly || (0 != (this.Flags & GridEntry.FLAG_RENDER_READONLY) || (!this.IsValueEditable && (0 == (this.Flags & GridEntry.FLAG_READONLY_EDITABLE)))); 1311if (value != originalValue && this.IsValueEditable) {
winforms\Managed\System\WinForms\PropertyGridInternal\PropertyDescriptorGridEntry.cs (2)
213return this.exceptionConverter == null && !IsPropertyReadOnly && base.IsValueEditable; 854if (parent != null && parent.IsValueEditable) {
winforms\Managed\System\WinForms\PropertyGridInternal\PropertyGridView.cs (4)
1428if (gridEntry.IsValueEditable && gridEntry.Enumerable) { 1802if (gridEntry.Enumerable && gridEntry.IsValueEditable) { 2721if (!gridEntry.Enumerable || !gridEntry.IsValueEditable) { 3333if (selectedGridEntry != null && selectedGridEntry.Enumerable && Edit.Focused && selectedGridEntry.IsValueEditable) {