3 overrides of PropertyValue
System.Windows.Forms (3)
winforms\Managed\System\WinForms\PropertyGridInternal\ArrayElementGridEntry.cs (1)
62public override object PropertyValue {
winforms\Managed\System\WinForms\PropertyGridInternal\PropertyDescriptorGridEntry.cs (1)
302public override object PropertyValue{
winforms\Managed\System\WinForms\PropertyGridInternal\SingleSelectRootGridEntry.cs (1)
223public override object PropertyValue{
4 writes to PropertyValue
System.Windows.Forms (4)
winforms\Managed\System\WinForms\PropertyGridInternal\GridEntry.cs (1)
2643this.PropertyValue = ConvertTextToValue(str);
winforms\Managed\System\WinForms\PropertyGridInternal\ImmutablePropertyDescriptorGridEntry.cs (1)
84parentEntry.PropertyValue = newObject;
winforms\Managed\System\WinForms\PropertyGridInternal\PropertyDescriptorGridEntry.cs (1)
855parent.PropertyValue = obj;
winforms\Managed\System\WinForms\PropertyGridInternal\PropertyGridView.cs (1)
4766ipeCur.PropertyValue = value;
22 references to PropertyValue
System.Windows.Forms (22)
winforms\Managed\System\WinForms\PropertyGridInternal\GridEntry.cs (11)
410if (fExpandable && (cacheItems == null || cacheItems.lastValue == null) && this.PropertyValue == null) { 942object obj = this.PropertyValue; 987object value = this.PropertyValue; 1016return this.PropertyValue; 1200this.PropertyValue, 1303object originalValue = this.PropertyValue; 1447return this.PropertyValue; 1483return this.PropertyValue; 1753return GetPropertyTextValue(this.PropertyValue); 2106val = this.PropertyValue; 2574if (this.InternalExpanded && cacheItems != null && cacheItems.lastValue != null && cacheItems.lastValue != this.PropertyValue) {
winforms\Managed\System\WinForms\PropertyGridInternal\PropertyDescriptorGridEntry.cs (2)
127if (ge.PropertyValue == owner || (owner.GetType().IsValueType && owner.GetType() == ge.PropertyValue.GetType())) {
winforms\Managed\System\WinForms\PropertyGridInternal\PropertyGridView.cs (9)
1233if (entry.PropertyValue != null) { 1234propType = entry.PropertyValue.GetType(); 1237System.Console.WriteLine(prefix + entry.PropertyLabel + ", value type=" + (propType == null ? "(null)" : propType.FullName) + ", value=" + (entry.PropertyValue == null ? "(null)" : entry.PropertyValue.ToString()) + 1975object value = gridEntry.PropertyValue; 2681object value = gridEntry.PropertyValue; 3863object value = gridEntry.PropertyValue; 4743originalValue = ipeCur.PropertyValue; 6781object oldValue = psheet.SelectedGridEntry.PropertyValue;