22 overrides of GetPropertiesSupported
System.ComponentModel.TypeConverter (10)
System\ComponentModel\ArrayConverter.cs (1)
61public override bool GetPropertiesSupported(ITypeDescriptorContext? context) => true;
System\ComponentModel\ComponentConverter.cs (1)
35public override bool GetPropertiesSupported(ITypeDescriptorContext? context) => true;
System\ComponentModel\Design\DesignerOptionService.cs (1)
437public override bool GetPropertiesSupported(ITypeDescriptorContext? cxt) => true;
System\ComponentModel\ExpandableObjectConverter.cs (1)
35public override bool GetPropertiesSupported(ITypeDescriptorContext? context) => true;
System\ComponentModel\MultilineStringConverter.cs (1)
42public override bool GetPropertiesSupported(ITypeDescriptorContext? context) => false;
System\ComponentModel\NullableConverter.cs (1)
177public override bool GetPropertiesSupported(ITypeDescriptorContext? context)
System\Drawing\PointConverter.cs (1)
121public override bool GetPropertiesSupported(ITypeDescriptorContext? context) => true;
System\Drawing\RectangleConverter.cs (1)
127public override bool GetPropertiesSupported(ITypeDescriptorContext? context) => true;
System\Drawing\SizeConverter.cs (1)
119public override bool GetPropertiesSupported(ITypeDescriptorContext? context) => true;
System\Drawing\SizeFConverter.cs (1)
116public override bool GetPropertiesSupported(ITypeDescriptorContext? context) => true;
System.Data.Common (2)
System\Data\DataTableTypeConverter.cs (1)
11public override bool GetPropertiesSupported(ITypeDescriptorContext? context) => false;
System\Data\PrimaryKeyTypeConverter.cs (1)
17public override bool GetPropertiesSupported(ITypeDescriptorContext? context) => false;
System.Drawing.Common (2)
Special\NotSupported.cs (2)
377public override bool GetPropertiesSupported(System.ComponentModel.ITypeDescriptorContext? context) { throw new System.PlatformNotSupportedException(System.SR.SystemDrawingCommon_PlatformNotSupported); } 828public override bool GetPropertiesSupported(System.ComponentModel.ITypeDescriptorContext? context) { throw new System.PlatformNotSupportedException(System.SR.SystemDrawingCommon_PlatformNotSupported); }
System.Windows.Forms (5)
System\Windows\Forms\ComponentModel\COM2Interop\COM2ExtendedTypeConverter.cs (1)
89public override bool GetPropertiesSupported(ITypeDescriptorContext? context)
System\Windows\Forms\Controls\Labels\LinkArea.LinkAreaConverter.cs (1)
160public override bool GetPropertiesSupported(ITypeDescriptorContext? context) => true;
System\Windows\Forms\Controls\MonthCalendar\SelectionRangeConverter.cs (1)
183public override bool GetPropertiesSupported(ITypeDescriptorContext? context)
System\Windows\Forms\Panels\TableLayoutPanel\TableLayoutPanelCellPositionTypeConverter.cs (1)
106public override bool GetPropertiesSupported(ITypeDescriptorContext? context) => true;
System\Windows\Forms\Scrolling\ScrollableControl.DockPaddingEdges.cs (1)
27public override bool GetPropertiesSupported(ITypeDescriptorContext? context) => true;
System.Windows.Forms.Design (1)
System\ComponentModel\Design\Serialization\CodeDomDesignerLoader.ModifierConverter.cs (1)
81public override bool GetPropertiesSupported(ITypeDescriptorContext? context)
System.Windows.Forms.Primitives (1)
System\Windows\Forms\PaddingConverter.cs (1)
118public override bool GetPropertiesSupported(ITypeDescriptorContext? context) => true;
System.Windows.Forms.Tests (1)
System\Windows\Forms\PropertyGridInternal\PropertiesTabTests.cs (1)
236public override bool GetPropertiesSupported(ITypeDescriptorContext context) => true;
11 references to GetPropertiesSupported
System.ComponentModel.TypeConverter (3)
System\ComponentModel\NullableConverter.cs (2)
181return UnderlyingTypeConverter.GetPropertiesSupported(context); 184return base.GetPropertiesSupported(context);
System\ComponentModel\TypeConverter.cs (1)
257public bool GetPropertiesSupported() => GetPropertiesSupported(null);
System.Windows.Forms (5)
System\Windows\Forms\ComponentModel\COM2Interop\COM2ExtendedTypeConverter.cs (2)
91? _innerConverter.GetPropertiesSupported(context) 92: base.GetPropertiesSupported(context);
System\Windows\Forms\Controls\PropertyGrid\PropertyGridInternal\GridEntry.cs (2)
394if (converter.GetPropertiesSupported(this)) 1292if (this is not IRootGridEntry && !TypeConverter.GetPropertiesSupported(this))
System\Windows\Forms\Controls\PropertyGrid\PropertyGridInternal\PropertiesTab.cs (1)
56return typeConverter is null || !typeConverter.GetPropertiesSupported(context)
System.Windows.Forms.Design (1)
System\ComponentModel\Design\Serialization\CodeDomDesignerLoader.ModifierConverter.cs (1)
82=> GetConverter(context).GetPropertiesSupported(context);
System.Windows.Forms.Tests (2)
System\Windows\Forms\ListViewGroupConverterTests.cs (1)
244Assert.False(converter.GetPropertiesSupported(null));
System\Windows\Forms\ListViewSubItemConverterTests.cs (1)
112Assert.True(converter.GetPropertiesSupported(null));