.net word cell issue

I have the following issue:
I need to create a table in .net aspose word.
For a specific cell depending on the content of the cell i want to change the font of the cell. As I understand changing the font can only be done via the run object which allows me to change the cell attributes.
My question is if when inserting a new cell in a word table, I can get a unique identifier that when I run through the for each loop in the run object I can change the font on a specific cell.
Hope this is understandable and there is a solution.

tx

@Ckramer1959 Yes, you are right, you can change font properties of text in the document using Run node properties.

If you need to identify cells in the table upon building document, you can use Node.CustomNodeId property. But please note, specified value of this property is not saved to an output file and exists only during the node lifetime.

If it is required to identify cells after saving the document, you can put a bookmark into the cell and use it as an identifier.