3 writes to objValue
System.Windows.Forms (3)
winforms\Managed\System\WinForms\PropertyGridInternal\SingleSelectRootGridEntry.cs (3)
49
this.
objValue
= value;
229
objValue
= value;
249
this.
objValue
= null;
14 references to objValue
System.Windows.Forms (14)
winforms\Managed\System\WinForms\PropertyGridInternal\MultiSelectRootGridEntry.cs (2)
38
foreach (object obj in (Array)
objValue
) {
60
object[] rgobjs = (object[])
objValue
;
winforms\Managed\System\WinForms\PropertyGridInternal\SingleSelectRootGridEntry.cs (12)
50
this.objValueClassName = TypeDescriptor.GetClassName(this.
objValue
);
157
ReadOnlyAttribute readOnlyAttr = (ReadOnlyAttribute)TypeDescriptor.GetAttributes(this.
objValue
)[typeof(ReadOnlyAttribute)];
158
if ((readOnlyAttr != null && !readOnlyAttr.IsDefaultAttribute()) || TypeDescriptor.GetAttributes(this.
objValue
).Contains(InheritanceAttribute.InheritedReadOnly)) {
190
HelpKeywordAttribute helpAttribute = (HelpKeywordAttribute)TypeDescriptor.GetAttributes(
objValue
)[typeof(HelpKeywordAttribute)];
202
if (
objValue
is IComponent) {
203
ISite site = ((IComponent)
objValue
).Site;
205
return
objValue
.GetType().Name;
211
else if (
objValue
!= null) {
212
return
objValue
.ToString();
225
return
objValue
;
228
object old =
objValue
;
230
objValueClassName = TypeDescriptor.GetClassName(
objValue
);