.. wxPython Phoenix documentation

   This file was generated by Phoenix's sphinx generator and associated
   tools, do not edit by hand.

   Copyright: (c) 2011-2020 by Total Control Software
   License:   wxWindows License

.. include:: headings.inc



.. _wx.VScrolled:

==========================================================================================================================================
|phoenix_title|  **wx.VScrolled**
==========================================================================================================================================

In the name of this class, "V" may stand for "variable" because it can be used for scrolling rows of variable heights; "virtual", because it is not necessary to know the heights of all rows in advance –  only those which are shown on the screen need to be measured; or even "vertical", because this class only supports scrolling vertically. 
         

In any case, this is a generalization of :ref:`wx.Scrolled`  which can be only used when all rows have the same heights. It lacks some other :ref:`wx.Scrolled`  features however, notably it can't scroll specific pixel sizes of the window or its exact client area size. 

To use this class, you need to derive from it and implement the :meth:`~wx.VarVScrollHelper.OnGetRowHeight`  pure virtual method. You also must call :meth:`~wx.VarVScrollHelper.SetRowCount`  to let the base class know how many rows it should display, but from that moment on the scrolling is handled entirely by :ref:`wx.VScrolled`. You only need to draw the visible part of contents in your  ``OnPaint()``   method as usual. You should use  :meth:`~wx.VarVScrollHelper.GetVisibleRowsBegin`  and :meth:`~wx.VarVScrollHelper.GetVisibleRowsEnd`  to select the lines to display. Note that the device context origin is not shifted so the first visible row always appears at the point (0, 0) in physical as well as logical coordinates. 

Note that this template class is available since wxWidgets 3.3.1, only VScrolledWindow was available in the earlier versions. 








         



.. seealso:: :ref:`wx.VScrolledWindow`, :ref:`wx.VScrolledCanvas`    







.. seealso:: :ref:`wx.HScrolledWindow`, :ref:`wx.HVScrolledWindow`    







|

|class_hierarchy| Class Hierarchy
=================================

.. raw:: html

   <div id="toggleBlock" onclick="return toggleVisibility(this)" class="closed" style="cursor:pointer;">
   <img id="toggleBlock-trigger" src="_static/images/closed.png"/>
   Inheritance diagram for class <strong>VScrolled</strong>:
   </div>
   <div id="toggleBlock-summary" style="display:block;"></div>
   <div id="toggleBlock-content" style="display:none;">
   <p class="graphviz">
   <center><img src="_static/images/inheritance/wx.VScrolled_inheritance.svg" alt="Inheritance diagram of VScrolled" usemap="#dummy" class="inheritance"/></center>
   <script type="text/javascript">toggleVisibilityOnLoad(document.getElementById('toggleBlock'))</script>
   <map id="dummy" name="dummy"> <area shape="rect" id="node1" href="wx.VScrolled.html" title="In the name of this class, 'V' may stand for 'variable' because it can be used for scrolling rows of variable heights; 'virtual', because it is not necessary to know the heights of all rows in advance –  only those which are shown on the screen need to be measured; or even 'vertical', because this class only supports scrolling vertically." alt="" coords="53,178,176,207"/> <area shape="rect" id="node3" href="wx.VarVScrollHelper.html" title="This class provides functions wrapping the wx.VarScrollHelperBase  class, targeted for vertical-specific scrolling." alt="" coords="101,92,277,121"/> <area shape="rect" id="node4" href="wx.VarScrollHelperBase.html" title="This class provides all common base functionality for scroll calculations shared among all variable scrolled window implementations as well as automatic scrollbar functionality, saved scroll positions, controlling target windows to be scrolled, as well as defining all required virtual functions that need to be implemented for any orientation specific work." alt="" coords="88,5,290,34"/> </map> 
   </p>
   </div>

|


|method_summary| Methods Summary
================================

================================================================================ ================================================================================
:meth:`~wx.VScrolled.__init__`                                                   Default constructor, you must call :meth:`~VScrolled.Create`   later.
:meth:`~wx.VScrolled.Create`                                                     Same as the non-default constructor, but returns a status code: ``True`` if ok, ``False`` if the window couldn't be created.
================================================================================ ================================================================================


|


|api| Class API
===============


.. class:: wx.VScrolled(T, VarVScrollHelper)

   **Possible constructors**::

       VScrolled() -> None
       
       VScrolled(parent, id=ID_ANY, pos=DefaultPosition, size=DefaultSize,
                 style=0, name=PanelNameStr) -> None
       
   
   In the name of this class, "V" may stand for "variable" because it can
   be used for scrolling rows of variable heights; "virtual", because it
   is not necessary to know the heights of all rows in advance  only
   those which are shown on the screen need to be measured; or even
   "vertical", because this class only supports scrolling vertically.



   .. method:: __init__(self, *args, **kw)



      |overload| **Overloaded Implementations:**

      :html:`<hr class="overloadsep" /><br />`

      
      **__init__** `(self)`
      
      Default constructor, you must call :meth:`Create`   later. 
                       
      
      :rtype: `None`     
      
      
      
      
      
      
      
      :html:`<hr class="overloadsep" /><br />`

      
      **__init__** `(self, parent, id=ID_ANY, pos=DefaultPosition, size=DefaultSize, style=0, name=PanelNameStr)`
      
      This is the normal constructor, no need to call :meth:`Create`   after using this constructor. 
                       
      
      
      
      
      :param `parent`: The parent window, must not be nullptr.   
      :type `parent`: wx.Window
      :param `id`: The identifier of this window, ``wx.ID_ANY`` by default.   
      :type `id`: wx.WindowID
      :param `pos`: The initial window position.   
      :type `pos`: wx.Point
      :param `size`: The initial window size.   
      :type `size`: wx.Size
      :param `style`: The window style. There are no special style bits defined for this class.   
      :type `style`: long
      :param `name`: The name for this window; usually not used.   
      :type `name`: string
      
      
      
      
      
      
      
      
      
      
      
      
      
      
      
      
      :rtype: `None`     
      
      
      
      
                        
      
      
      
      .. note:: 
      
          ``VSCROLL``   is always automatically added to the style, there is no need to specify it explicitly.  
      
      
      
      
      
      
      
      :html:`<hr class="overloadsep" /><br />`






   .. method:: Create(self, parent, id=ID_ANY, pos=DefaultPosition, size=DefaultSize, style=0, name=PanelNameStr)

      Same as the non-default constructor, but returns a status code: ``True`` if ok, ``False`` if the window couldn't be created. 
                 

      Just as with the constructor, the  ``VSCROLL``   style is always used, there is no need to specify it explicitly.  
                 


      :param `parent`: 
      :type `parent`: wx.Window
      :param `id`: 
      :type `id`: wx.WindowID
      :param `pos`: 
      :type `pos`: wx.Point
      :param `size`: 
      :type `size`: wx.Size
      :param `style`: 
      :type `style`: long
      :param `name`: 
      :type `name`: string




      :rtype: `bool`







