3 overrides of PropertyType
System.Windows.Forms (3)
winforms\Managed\System\WinForms\PropertyGridInternal\ArrayElementGridEntry.cs (1)
56public override Type PropertyType {
winforms\Managed\System\WinForms\PropertyGridInternal\CategoryGridEntry.cs (1)
179public override Type PropertyType {
winforms\Managed\System\WinForms\PropertyGridInternal\PropertyDescriptorGridEntry.cs (1)
290public override Type PropertyType {
18 references to PropertyType
System.Windows.Forms (18)
winforms\Managed\System\WinForms\PropertyGridInternal\ArrayElementGridEntry.cs (1)
58return parentPE.PropertyType.GetElementType();
winforms\Managed\System\WinForms\PropertyGridInternal\GridEntry.cs (13)
216return TypeDescriptor.GetAttributes(PropertyType); 502bool isImmutableReadOnly = TypeDescriptor.GetAttributes(this.PropertyType)[typeof(ImmutableObjectAttribute)].Equals(ImmutableObjectAttribute.Yes); 540if (!isImmutable && !PropertyType.IsValueType) { 989converter = TypeDescriptor.GetConverter(this.PropertyType); 1006if (editor == null && this.PropertyType != null) { 1007editor = (UITypeEditor)TypeDescriptor.GetEditor(this.PropertyType, typeof(System.Drawing.Design.UITypeEditor)); 1201this.PropertyType); 1500Type type = this.PropertyType; 1514return this.PropertyType; 1796object type = this.PropertyType; 1851pe.PropertyType.Equals(this.PropertyType) && pe.PropertyDepth == this.PropertyDepth; 2565Type type = this.PropertyType;
winforms\Managed\System\WinForms\PropertyGridInternal\ImmutablePropertyDescriptorGridEntry.cs (1)
76InstanceParentGridEntry.PropertyType.FullName,
winforms\Managed\System\WinForms\PropertyGridInternal\PropertyDescriptorGridEntry.cs (1)
837Type propType = ParentGridEntry.PropertyType;
winforms\Managed\System\WinForms\PropertyGridInternal\PropertyGridView.cs (2)
1231Type propType = entry.PropertyType; 5736Type createType = gridView.SelectedGridEntry.PropertyType;