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