Hi there,
I am trying to modify the text height of a table note.
What works right now is this:
var xyz = table.GetCellNote(cell);
var new_text_format = xyz.GetInstructions(false);
new_text_format.TextAngle = 12;
xyz.Modify(new_text_format);
But I want to modify the text's height not its angle.
Any suggestions?