Hi Graeme,
Thanks for your
update.
For your requirement , CurrentRecord can get
from CurrentRecordContextChange
event using “e.Table.CurrentRecord”. Please refer to the following code
snippets:
public void
MasterGrid_CurrentRecordContextChange(object sender, CurrentRecordContextChangeEventArgs
e)
{
Record r = null;
if (e.Action == CurrentRecordAction.EnterRecordComplete &&
e.Record != null)
{
r = e.Table.CurrentRecord;
}
}
Please try this and let us know if you have any queries.
Regards,
Eswari S