ComponentOne FinancialChart for WPF
C1.WPF 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
    When overridden in a derived class, positions child elements and determines a size for a System.Windows.FrameworkElement derived class.
    Syntax
    'Declaration
     
    
    Protected Overrides NotOverridable Function ArrangeOverride( _
       ByVal finalSize As Size _
    ) As Size
    'Usage
     
    
    Dim instance As C1LayoutTransformer
    Dim finalSize As Size
    Dim value As Size
     
    value = instance.ArrangeOverride(finalSize)
    protected override Size ArrangeOverride( 
       Size finalSize
    )
    protected:
    Size ArrangeOverride( 
       Size finalSize
    ) override 

    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