Tutorial: Window.getBounds

Window.getBounds

Gets the current bounds (top, left, width, height) of the window

Example

async function getBounds() {
    const app = await fin.Application.create({
        name: 'myApp',
        uuid: 'app-3',
        url: 'https://cdn.openfin.co/docs/javascript/stable/tutorial-Window.getBounds.html',
        autoShow: true
    });
    await app.run();
    const win = await app.getWindow();
    return await win.getBounds();
}

getBounds().then(bounds => console.log(bounds)).catch(err => console.log(err));