Community Tip - You can change your system assigned username to something more personal in your community settings. X
In j-link automation , the table already available with drawing. in that multiple rows are there , in that if any cell contains null value i need to delete the entire row.
For that i am using the below code,
TableCell Mytablecell= pfcTable.TableCell_Create (k, 2);
DetailNoteItem cellNote =(DetailNoteItem) MyTable.GetCellNote(Mytablecell);
if(cellNote==null){
MyTable.DeleteRow(k, Boolean.TRUE);
}
but this code deleting the row if the entire row is empty.
How to get the each cell value in the table.??
Waiting for your reply