ViewBox.forceLayout method

Forces the ViewBox to update its layout. Use this function when making the ViewBox visible again after its style.display property had been set to "none".

Syntax

viewBox.forceLayout();

Parameters

This method has no parameters.

Return value

This method does not return a value.

Remarks

When you set the style.display property of a ViewBox or its parent elements to "none", the app discards layout information about those elements. When you change the value of the display property back to a style that makes everything visible again, the app will layout all the elements, but the ViewBox won't receive information about the current layout and will have an invalid layout. You can fix the issue by calling this function when you make the ViewBox visible again.

Requirements

Minimum WinJS version

WinJS 1.0

Namespace

WinJS.UI

See also

ViewBox

display