Inserting a ScreenTip

Hello. I am using Aspose.Diagram for Python via .NET, and I’m looking to insert a ScreenTip into a shape in a Visio diagram. Is it possible to do so programmatically? If so, could somebody point me to the correct API documentation for working with this?

Thank you

@eppingera
Please refer to the following code and documentation:

diagram = Diagram(os.path.join(sourceDir, "source.vsdx"))
shape = diagram.pages[0].shapes.get_shape(1)
shape.controls[0].prompt.value = "Tip" 

https://reference.aspose.com/diagram/python-net/

Thanks.

This worked, thank you.

@eppingera
You are welcome. Should you have further queries or issue, feel free to write us back.