ResizeObserverEntry

Overview

The ResizeObserverEntry interface represents the object passed to the ResizeObserver() constructor's callback function, which allows you to access the new dimensions of the Element or SVGElement being observed.

Location

Properties


borderBoxSize

 

property borderBoxSize: dynamic read;

 

dynamic borderBoxSize { get; }

 

var borderBoxSize: dynamic { get{} }

 

dynamic borderBoxSize { __get; }

 

ReadOnly Property borderBoxSize() As dynamic

contentBoxSize

 

property contentBoxSize: dynamic read;

 

dynamic contentBoxSize { get; }

 

var contentBoxSize: dynamic { get{} }

 

dynamic contentBoxSize { __get; }

 

ReadOnly Property contentBoxSize() As dynamic

contentRect

 

property contentRect: dynamic read;

 

dynamic contentRect { get; }

 

var contentRect: dynamic { get{} }

 

dynamic contentRect { __get; }

 

ReadOnly Property contentRect() As dynamic

target

 

property target: HTMLElement read;

 

HTMLElement target { get; }

 

var target: HTMLElement { get{} }

 

HTMLElement target { __get; }

 

ReadOnly Property target() As HTMLElement