]> git.saurik.com Git - wxWidgets.git/commitdiff
Show GridCellAutoWrapStringRenderer
authorRobin Dunn <robin@alldunn.com>
Tue, 21 Nov 2006 03:35:32 +0000 (03:35 +0000)
committerRobin Dunn <robin@alldunn.com>
Tue, 21 Nov 2006 03:35:32 +0000 (03:35 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@43553 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

wxPython/demo/GridSimple.py

index 9c9b4ce425d91d00c3ea0367b6ffdba7c5d80193..0748d09f7e16b2929eb8ade1ac869032d51376e6 100644 (file)
@@ -72,7 +72,11 @@ class SimpleGrid(gridlib.Grid): ##, mixins.GridAutoEditMixin):
         self.SetCellEditor(0, 4, editor)
         self.SetCellValue(0, 4, "Limited text")
 
+        renderer = gridlib.GridCellAutoWrapStringRenderer()
+        self.SetCellRenderer(15,0, renderer)
+        self.SetCellValue(15,0, "The text in this cell will be rendered with word-wrapping")
 
+        
         # test all the events
         self.Bind(gridlib.EVT_GRID_CELL_LEFT_CLICK, self.OnCellLeftClick)
         self.Bind(gridlib.EVT_GRID_CELL_RIGHT_CLICK, self.OnCellRightClick)