2 writes to _innerEditor
System.Windows.Forms (2)
System\Windows\Forms\ComponentModel\COM2Interop\COM2ExtendedUITypeEditor.cs (2)
17
_innerEditor
= baseTypeEditor;
22
_innerEditor
= (UITypeEditor?)TypeDescriptor.GetEditor(baseType, typeof(UITypeEditor));
8 references to _innerEditor
System.Windows.Forms (8)
System\Windows\Forms\ComponentModel\COM2Interop\COM2ExtendedUITypeEditor.cs (8)
25
public UITypeEditor? InnerEditor =>
_innerEditor
;
28
=>
_innerEditor
is not null
29
?
_innerEditor
.EditValue(context, provider, value)
33
=>
_innerEditor
is not null
34
?
_innerEditor
.GetPaintValueSupported(context)
38
=>
_innerEditor
is not null
39
?
_innerEditor
.GetEditStyle(context)
44
_innerEditor
?.PaintValue(e);