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 nCol = pEvent.Col;
var val = pMe.GetCellText(nRow, nCol);