Show hidden
From NOA Documentation Wiki
Source: Markus Krüger (NOA developer)
If you opened a document using the document descriptor with the property "hidden" set to true you might want to make the document visible later.
Here is how you can do it:
... ... IDocument document = ....; //setting it visible document.getFrame().getXFrame().getContainerWindow().setVisible(true);

