How can I add screen tip to shape in visio using c# and Microsoft.Office.Interop.Visio Actually I tried to use Controls Section and I followed microsoft documentation but it does not work and showing me this error: "\n\nUnexpected end of file."
here is microsoft documentation: https://learn.microsoft.com/en-us/office/client-developer/visio/tip-cell-controls-section
And here is my code in c# to change the screentip(last line for screen tip)
visioRectShape.get_Cells("FillForegnd").Formula = "RGB(0,102,255)";
visioRectShape.get_Cells("Char.Size").Formula = "10 pt";
visioRectShape.get_CellsU("Controls.TestName.Tip").Formula = "10 pt";