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)
1428
public virtual string GetPropertyTextValue() =>
GetPropertyTextValue
(PropertyValue);
1804
text =
GetPropertyTextValue
(value);
1817
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)
1546
string text = gridEntry.
GetPropertyTextValue
(currentValue);
2267
EditTextBox.Text = gridEntry?.
GetPropertyTextValue
(DropDownListBox.SelectedItem);
3744
string value = gridEntry.
GetPropertyTextValue
(rgItems[i]);