ComponentOne Basic Library for UWP
C1.UWP Assembly / C1.Xaml Namespace / PopupUtil Class / TestPosition Method / TestPosition(FrameworkElement,Anchor,FrameworkElement,Anchor,Double,Double) Method
The element to position.
An Anchor value specifying the point in the element to position.
The Windows.UI.Xaml.FrameworkElement to use as reference.
An Anchor value specifying the point in the FrameworkElement used as reference.
The horizontal overlap between the elements (used for corner matching's).
The vertical overlap between the elements (used for corner matching's).

In This Topic
    TestPosition(FrameworkElement,Anchor,FrameworkElement,Anchor,Double,Double) Method
    In This Topic
    Calculates the position of a Windows.UI.Xaml.FrameworkElement so that the specified point in the FrameworkElement matches the specified point of another FrameworkElement.
    Syntax
    'Declaration
     
    Public Overloads Shared Function TestPosition( _
       ByVal positionElement As Windows.UI.Xaml.FrameworkElement, _
       ByVal positionAnchor As Anchor, _
       ByVal element As Windows.UI.Xaml.FrameworkElement, _
       ByVal elementAnchor As Anchor, _
       ByVal overlapHorizontal As System.Double, _
       ByVal overlapVertical As System.Double _
    ) As Windows.Foundation.Point
    public static Windows.Foundation.Point TestPosition( 
       Windows.UI.Xaml.FrameworkElement positionElement,
       Anchor positionAnchor,
       Windows.UI.Xaml.FrameworkElement element,
       Anchor elementAnchor,
       System.double overlapHorizontal,
       System.double overlapVertical
    )

    Parameters

    positionElement
    The element to position.
    positionAnchor
    An Anchor value specifying the point in the element to position.
    element
    The Windows.UI.Xaml.FrameworkElement to use as reference.
    elementAnchor
    An Anchor value specifying the point in the FrameworkElement used as reference.
    overlapHorizontal
    The horizontal overlap between the elements (used for corner matching's).
    overlapVertical
    The vertical overlap between the elements (used for corner matching's).

    Return Value

    The absolute point where the FrameworkElement would be located.
    See Also