pMe | (Object) Reference to the PmgWTable object where the event rises. |
---|---|
pEvent | (Object) Reference to an object describing detailed information about the specific event.
pEvent.Row - (Long) [for reading] Row of clicked cell (zero-based index, counted including the fixed part).
pEvent.Col - (Long) [for reading] Column of clicked cell (zero-based index, counted including the fixed part).
pEvent.Ctrl - (Boolean) [for reading] Indication of concurrent pressing the Ctrl key.
pEvent.Shift - (Boolean) [for reading] Indication of concurrent pressing the Shift key.
pEvent.Alt - (Boolean) [for reading] 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();