Category / Section
How to specify the padding to border of an Office2007 style form in WinForms RibbonControlAdv?
Border settings
The Borders property gets or sets the value of the borders of an Office 2007 style form.
C#
this.Borders = new Padding(2); (or) this.Borders = new Padding(2,5,1,3);
VB
Me.Borders = new Padding(2) (or) Me.Borders =new Padding(2,5,1,3)