DataGrid Include a row value in ConfirmDeleteText

In angular datagrid, when a user clicks to delete a row from a datagrid, I would like to include a field value from the selected row in the ConfirmDeleteText...
Guessing it might be something like this for the property?
Are you sure you want to delete ${grid0.selectedrow.somefieldnamehere.value}

image

Hi @BillP,

It works similar to templates:

Are you sure you want to delete ${data.ProductName}?

Thank you that works perfectly.