Hex Editor - Binary File Editing Software for Windows
Download Hex Editor Neo Hide this button

IWindow Interface

IWindow interface is a base interface for all window objects. Currently, the document view object implements the IDocumentView interface, which inherits from IWindow.

Declaration

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

IWindow Properties

name

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.

IWindow Methods

close

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.