+ bool ScrollLines(int lines);
+ bool ScrollPages(int pages);
+ bool LineUp();
+ bool LineDown();
+ bool PageUp();
+ bool PageDown();
+
+
+
+// // Properties list
+// %pragma(python) addtoclass = "
+// _prop_list_ = {
+// 'size' : ('GetSize', 'SetSize'),
+// 'enabled' : ('IsEnabled', 'Enable'),
+// 'background' : ('GetBackgroundColour', 'SetBackgroundColour'),
+// 'foreground' : ('GetForegroundColour', 'SetForegroundColour'),
+// 'children' : ('GetChildren', None),
+// 'charHeight' : ('GetCharHeight', None),
+// 'charWidth' : ('GetCharWidth', None),
+// 'clientSize' : ('GetClientSize', 'SetClientSize'),
+// 'font' : ('GetFont', 'SetFont'),
+// 'grandParent' : ('GetGrandParent', None),
+// 'handle' : ('GetHandle', None),
+// 'label' : ('GetLabel', 'SetLabel'),
+// 'name' : ('GetName', 'SetName'),
+// 'parent' : ('GetParent', None),
+// 'position' : ('GetPosition', 'SetPosition'),
+// 'title' : ('GetTitle', 'SetTitle'),
+// 'style' : ('GetWindowStyleFlag', 'SetWindowStyleFlag'),
+// 'visible' : ('IsShown', 'Show'),
+// 'toolTip' : ('GetToolTip', 'SetToolTip'),
+// 'sizer' : ('GetSizer', 'SetSizer'),
+// 'validator' : ('GetValidator', 'SetValidator'),
+// 'dropTarget' : ('GetDropTarget', 'SetDropTarget'),
+// 'caret' : ('GetCaret', 'SetCaret'),
+// 'autoLayout' : ('GetAutoLayout', 'SetAutoLayout'),
+// 'constraints' : ('GetConstraints', 'SetConstraints'),
+
+// }
+// _prop_list_.update(wxEvtHandler._prop_list_)
+// "