Positions child elements and determines a size for a
System.Windows.UIElement. Parent elements call this method from their
System.Windows.UIElement.ArrangeCore(System.Windows.Rect) implementation (or a WPF framework-level equivalent) to form a recursive layout update. This method constitutes the second pass of a layout update.
Syntax
'Declaration
Public Sub Arrange( _
ByVal As Rect _
)
public void Arrange(
Rect
)
Parameters
- finalRect
- The final size that the parent computes for the child element, provided as a System.Windows.Rect instance.
See Also