ComponentOne Basic Library for UWP
C1.UWP Assembly / C1.Xaml Namespace / C1LayoutTransformer Class / ArrangeOverride Method
The final area within the parent that this element should use to arrange itself and its children.

In This Topic
    ArrangeOverride Method (C1LayoutTransformer)
    In This Topic
    Provides the behavior for the "Arrange" pass of layout.
    Syntax
    'Declaration
     
    Protected Overrides NotOverridable Function ArrangeOverride( _
       ByVal finalSize As Windows.Foundation.Size _
    ) As Windows.Foundation.Size
    protected override Windows.Foundation.Size ArrangeOverride( 
       Windows.Foundation.Size finalSize
    )

    Parameters

    finalSize
    The final area within the parent that this element should use to arrange itself and its children.

    Return Value

    The actual size used.
    Remarks
    Using the WPF parameter name finalSize instead of Silverlight's finalSize for clarity
    See Also