How to change the cell type for individual cells.
Use SetStyleRange and SetControl to change cell types for a cell.
Here is an example:
// Apply a checkbox to cell
SetStyleRange(CGXRange(nRow, nCol), CGXStyle()
.SetControl(GX_IDS_CTRL_CHECKBOX3D)
.SetChoiceList(_T(“Checkbox”))
);