pMe | (Object) Reference to the PmgWTable object where the event rises. |
---|---|
pEvent | (Object) Reference to object describing detailed information about the specific event. pEvent.Row - (Long) Row of clicked cell (zero-based index, counted including the fixed part). pEvent.Col - (Long) Column of clicked cell (zero-based index, counted including the fixed part). pEvent.Ctrl - (Boolean) Indication of concurrent pressing the Ctrl key. pEvent.Shift - (Boolean) Indication of concurrent pressing the Shift key. pEvent.Alt - (Boolean) Indication of concurrent pressing the Alt key. |
var nRow = pEvent.Row;
var sColor = pMe.GetCellBackColor(nRow, 1);
if (sColor == "#009898")
pMe.SetCellBackColor(nRow, -3, "transparent");
else
pMe.SetCellBackColor(nRow, -3, "#009898");
pMe.Draw();