can remove automatic horizontal scrollbar in wxgrid?
Unfortunately not. As I found in the mail archives from Robin Dunn, the wx developer and creator / maintainer of wxPython:
Although you can deactivate scrollbars using wx.Window and the wx.ScrolledWindow Methods regarding scrolling, the Grid class is reset at different points and they just come back. So there really is no way to turn off scrollbars, other than making the window large enough that they are not needed.
link
show horizontal, hide vertical scrollbar:
grid_object.ShowScrollbars(wx.SHOW_SB_DEFAULT,wx.SHOW_SB_NEVER)
hide horizontal and vertical scrollbar:
grid_object.ShowScrollbars(wx.SHOW_SB_NEVER,wx.SHOW_SB_NEVER)
Source: https://habr.com/ru/post/1337801/More articles:Smoothed rounded corners in Windows CE 6.0 - windows-ceJSplitPane + MiGLayout: how to enable automation - swingJava Crashed application - how to read the crash file created by the JVM? - javaIs it possible to prevent execution of an extraordinary execution using one volatile - javaQuick MATLAB method to reorder columns using sorters - sortingMultimedia volume instead of phone volume in Android - androidProblems with sizing SVG in Raphael - svgspring aspectj - compilation of weaving time of an external can - springComparing arrays of different sizes - c ++How to scale vector path created in raphaeljs with browser size? - responsive-designAll Articles