An application sends a ZGM_GETCELLEDIT message to get the edit attribute value of the specified cell in the ZeeGrid.
ZGM_GETCELLEDIT
wParam = (WPARAM)(int) iCellIndex; //Cell index
lParam = 0; //not used; must be zero
The return value is the edit attribute of the specified ZeeGrid cell. A value of 0 means that the cell is not editable, or readonly. A value of 1 means that the cell is editable with a text edit box. A value of 2 means that the cell is editable with a droplist combo box. A value of 3 means that the cell is a boolean value and is editable by double-clicking the cell to change the boolean state from TRUE to FALSE or vice versa. A value of 4 means that the cell is editable by the date picker common control.
All cells have an edit attribute of 0, or readonly, by default.