Hi,

I spend hours but didn't find any sensefully documentation, code snippet or posting that would help me.
My goal is to get the notes text from a notes page in a draw document.
The notes page itself is easy to get..

XPresentationPage aPresentationPage = (XPresentationPage) query(
XPresentationPage.class, xDrawPage);

XDrawPage notesPage = aPresentationPage.getNotesPage();
int count = notesPage.getCount();
for (int i = 0; i < count; i++) {
Object byIndex = notesPage.getByIndex(i);
XShape shape = (XShape) query(XShape.class, byIndex);
if (shape.getShapeType().equals(
"com.sun.star.presentation.NotesShape")) {
...
But now I have no idea how to get the text out of this shape?
I took a look into the propertySet property names but not just one looks promissing.

Any hint or pointer is very warm welcome.
Thank you very much.
Stefan

Reply via email to