Layout.LayoutChildren(Double, Double, Double, Double) Method

Definition

Positions and sizes the children of a Layout.

protected abstract void LayoutChildren (double x, double y, double width, double height);
abstract member LayoutChildren : double * double * double * double -> unit

Parameters

x
Double

A value representing the x coordinate of the child region bounding box.

y
Double

A value representing the y coordinate of the child region bounding box.

width
Double

A value representing the width of the child region bounding box.

height
Double

A value representing the height of the child region bounding box.

Remarks

Implementors wishing to change the default behavior of a Layout should override this method. It is suggested to still call the base method and modify its calculated results.

Applies to