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