The easiest way is to look for scroll instances in the / control controlcollection form, and then just update the width value.
foreach(Control ctrl in dataGridProducts.Controls) if (ctrl.GetType() == typeof(VScrollBar)) ctrl.Width = 100;
It works on Windows CE with a point compact card
source share