Layout.LayoutChildren(Double, Double, Double, Double) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Caution
Use ArrangeOverride
Positions and sizes the children of a layout.
protected:
abstract void LayoutChildren(double x, double y, double width, double height);
protected abstract void LayoutChildren (double x, double y, double width, double height);
[System.Obsolete("Use ArrangeOverride")]
protected abstract void LayoutChildren (double x, double y, double width, double height);
abstract member LayoutChildren : double * double * double * double -> unit
[<System.Obsolete("Use ArrangeOverride")>]
abstract member LayoutChildren : double * double * double * double -> unit
Protected MustOverride Sub LayoutChildren (x As Double, y As Double, width As Double, height As Double)
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.
- Attributes
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.