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