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)
1437public virtual string GetPropertyTextValue() => GetPropertyTextValue(PropertyValue); 1813text = GetPropertyTextValue(value); 1826text = GetPropertyTextValue(value);
System\Windows\Forms\Controls\PropertyGrid\PropertyGridInternal\MultiPropertyDescriptorGridEntry.cs (1)
178return base.GetPropertyTextValue(value);
System\Windows\Forms\Controls\PropertyGrid\PropertyGridInternal\PropertyGridView.cs (3)
1522string text = gridEntry.GetPropertyTextValue(currentValue); 2243EditTextBox.Text = gridEntry?.GetPropertyTextValue(DropDownListBox.SelectedItem); 3704string value = gridEntry.GetPropertyTextValue(rgItems[i]);