ComponentOne FinancialChart for WPF
C1.WPF Namespace / C1LayoutRounder Class / MeasureOverride Method
An upper limit value that the return value should not exceed.



In This Topic
    MeasureOverride Method (C1LayoutRounder)
    In This Topic
    When overridden in a derived class, measures the size in layout required for child elements and determines a size for the System.Windows.FrameworkElement-derived class.
    Syntax
    'Declaration
     
    
    Protected Overrides NotOverridable Function MeasureOverride( _
       ByVal constraint As Size _
    ) As Size
    'Usage
     
    
    Dim instance As C1LayoutRounder
    Dim constraint As Size
    Dim value As Size
     
    value = instance.MeasureOverride(constraint)
    protected override Size MeasureOverride( 
       Size constraint
    )
    protected:
    Size MeasureOverride( 
       Size constraint
    ) override 

    Parameters

    constraint
    An upper limit value that the return value should not exceed.

    Return Value

    The size that this element determines it needs during layout, based on its calculations of child element sizes.
    See Also