// Licence: wxWindows license
/////////////////////////////////////////////////////////////////////////////
-%module grid
+%define DOCSTRING
+"Classes for implementing a spreadsheet-like control."
+%enddef
+%module(docstring=DOCSTRING) grid
+
%{
#include "wx/wxPython/wxPython.h"
long style = wxWANTS_CHARS,
const wxString& name = wxPyPanelNameStr);
+ %name(PreGrid) wxGrid();
+
+
+ bool Create( wxWindow *parent,
+ wxWindowID id,
+ const wxPoint& pos = wxDefaultPosition,
+ const wxSize& size = wxDefaultSize,
+ long style = wxWANTS_CHARS,
+ const wxString& name = wxPyPanelNameStr );
+
enum wxGridSelectionModes {
wxGridSelectCells,
wxGridSelectRows,