sets autosize for the layout
hor | string | cells that will be autosized horizontally |
ver | string | cells that will be autosized vertically |
var myLayout = new dhtmlXLayoutObject(document.body, "5I");
// default autosize for "5I" pattern is ["a;d;e", "e"]
// redefine autosize
myLayout.setAutoSize("a;b;e", "a");
list of available autosizes could be retrieved with listAutoSizes method
Back to top