+ self.SetReadOnly(3, 3, true)
+
+ self.SetCellEditor(5, 0, wxGridCellNumberEditor())
+ self.SetCellValue(5, 0, "123")
+ self.SetCellEditor(6, 0, wxGridCellFloatEditor())
+ self.SetCellValue(6, 0, "123.34")
+
+ self.SetCellValue(6, 3, "You can veto editing this cell")
+