Add a missing constant and enum

This commit is contained in:
Robin Dunn 2017-04-27 09:28:22 -07:00
parent ce9dc25b5e
commit a6c864ae78

View File

@ -5,6 +5,21 @@
// Licence: wxWindows licence // Licence: wxWindows licence
///////////////////////////////////////////////////////////////////////////// /////////////////////////////////////////////////////////////////////////////
/// Magic constant which tells (to some functions) to automatically calculate
/// the appropriate size
#define wxGRID_AUTOSIZE (-1)
/// Many wxGrid methods work either with columns or rows, this enum is used for
/// the parameter indicating which one should it be
enum wxGridDirection
{
wxGRID_COLUMN,
wxGRID_ROW
};
/** /**
@class wxGridCellRenderer @class wxGridCellRenderer