IWindow
interface is a base interface for all window objects. Currently, the document view object implements the IDocumentView interface, which inherits from IWindow
.
interface IWindow {
// Properties
readonly ${name}: string;
// Methods
${close}(): void;
}
// This interface is not available in managed environment
// This interface is not available in native environment
readonly name: string;
// This property is not available in managed environment
// This property is not available in native environment
Returns the name of the window.
close(): void;
// This method is not available in managed environment
// This method is not available in native environment
Closes the window. If this is the last window of a document, this action may lead to a closing of a document.