Is it possible to deactivate SplitterBar in WinGrid by setting any property? In some cases after setting up some properties and rebuild solution the splitter bar are added automatically to my UltraWinGrid (i manually define a schema at runtime: generic list of wrappr class). I hadn't found any property like HideSplitterbar.
Any ideas?
Thanks!
If you mean the ColumnScrollRegion and RowScrollRegion splitters I am not sure you can hide them but you can set MaxColScrollRegions and MaxRowScrollRegions to 1 which will limit the number of scroll regions.
I have a grid on which MaxColScrollRegions and MaxRowScrollRegions are both set to 1 (via the grid designer when I unchecked a couple of checkboxes). However, at runtime I still get an extra unwanted ColScrollRegion. In the InitializeLayout event, the extra scroll region is already there. Upon further inspection, the designer-generated code is indeed creating two scroll regions.
How do I indicate in the designer (which already shows MaxColScrollRegions == 1) that I do not want the extra scroll region?
Thanks