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