In vb.net, what's the property of a Control to get the "inner size"? I mean the size that the control should have to doesn't display the scrollbars. I would like to resize a form following this criteria:
-If the inner size is too small, use the default form size.
-If the inner size is between a given range, resize the form to make the scrollbars disappear.
-If the inner size is too large, set a max size for the form and maintain the scrollbars.
I'm using a Devexpress LayoutControl. Thank you.