Hello Adrin,
You have to write your own TypeConverter class that is derived from the ExpandableObjectConverter.
Then you will have to apply the TypeConverter attribute to your PointF property,
specifying your own converter.
You also can use your type converter to show custom editable string value
for your property, like the PointConverter does. You will have to override
the methods CanConvertFrom, CanConvertTo, ConvertFrom and ConvertTo.

Signature
Andrey Shchekin
> How come I can change the values of X & Y for a Point in a Property
> Grid but
[quoted text clipped - 5 lines]
> Thanks,
> Adrin