2 overrides of GetPropertyTextValue
System.Windows.Forms (2)
System\Windows\Forms\Controls\PropertyGrid\PropertyGridInternal\CategoryGridEntry.cs (1)
94
public override string
GetPropertyTextValue
(object? o) => string.Empty;
System\Windows\Forms\Controls\PropertyGrid\PropertyGridInternal\MultiPropertyDescriptorGridEntry.cs (1)
164
public override string
GetPropertyTextValue
(object? value)
7 references to GetPropertyTextValue
System.Windows.Forms (7)
System\Windows\Forms\Controls\PropertyGrid\PropertyGridInternal\GridEntry.cs (3)
1437
public virtual string GetPropertyTextValue() =>
GetPropertyTextValue
(PropertyValue);
1813
text =
GetPropertyTextValue
(value);
1826
text =
GetPropertyTextValue
(value);
System\Windows\Forms\Controls\PropertyGrid\PropertyGridInternal\MultiPropertyDescriptorGridEntry.cs (1)
178
return base.
GetPropertyTextValue
(value);
System\Windows\Forms\Controls\PropertyGrid\PropertyGridInternal\PropertyGridView.cs (3)
1522
string text = gridEntry.
GetPropertyTextValue
(currentValue);
2243
EditTextBox.Text = gridEntry?.
GetPropertyTextValue
(DropDownListBox.SelectedItem);
3704
string value = gridEntry.
GetPropertyTextValue
(rgItems[i]);