Is addin (excel content add-ins) resize event supported/available in office.js 1.0 or 1.1?

237 Views Asked by At

I am looking for add in resize event but not luck so for.

Is add in (excel content add-ins) resize event supported/available in office.js 1.0 or 1.1?

1

There are 1 best solutions below

0
ozil On

This can be achieved by using javascript/jquery window.resize()

JavaScript:

window.onresize = function(event) {
    ...
};  

jquery:

$( window ).resize(function() {
  ...
});