Provides the behavior for the Arrange pass of Silverlight layout. Classes can override this method to define their own Arrange pass behavior.

Namespace:  C1.Silverlight.Extended
Assembly:  C1.Silverlight.Extended (in C1.Silverlight.Extended.dll)

Syntax

C#
protected override Size ArrangeOverride(
	Size finalSize
)
Visual Basic
Protected Overrides Function ArrangeOverride ( _
	finalSize As Size _
) As Size

Parameters

finalSize
Type: System.Windows..::..Size
The final area within the parent that this object should use to arrange itself and its children.

Return Value

The actual size that is used after the element is arranged in layout.

See Also