In many code examples I have found the DisplayRectangle property of a Control object being used. However this property does not appear in the intellisense popup, neither does it get any syntax highlighting, but it does compile and work as expected.
Should I use this kind of Property?
How can I find out about more of them, can they be activated in intellisense?
Update/Clarification: I have now found out that it does seem that it depends on which control. The following code does compile:
Control c = sender as Control;
Form f = sender as Form;
PictureBox p = sender as PictureBox;
Console.Write(c.DisplayRectangle); // No Intellisense
Console.Write(f.DisplayRectangle); // Intellisense
Console.Write(p.DisplayRectangle); // No Intellisense
My question was about the DisplayRectangle for PictureBox, or Controls in general.