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