IResizeResultObject

[ Interface ]

export interface IResizeResultObject extends TcHmi.IResultObject {
    element: JQuery;
    parentPixelSize: {
        width: number;
        height: number;
    };
};

This interface provides detailed information in the resize callback of the TopMostLayer.

Extends the interface IResultObject by the following properties:

Properties

Name

Type

Description

element

jQuery

Enlarged element

parentPixelSize

{width: number, height: number}

Width and height of the DOM parent element

IResizeResultObject 1:

Available from version 1.10