Share via


AdornerLayout.Arrange Method

Performs the layout arrangement on the specified adorner.

Namespace:  Microsoft.Windows.Design.Interaction
Assembly:  Microsoft.Windows.Design.Interaction (in Microsoft.Windows.Design.Interaction.dll)

Syntax

'Declaration
Public MustOverride Sub Arrange ( _
    adorner As UIElement _
)
public abstract void Arrange(
    UIElement adorner
)
public:
virtual void Arrange(
    UIElement^ adorner
) abstract
abstract Arrange : 
        adorner:UIElement -> unit 
public abstract function Arrange(
    adorner : UIElement
)

Parameters

Exceptions

Exception Condition
ArgumentNullException

adorner is nulla null reference (Nothing in Visual Basic).

Remarks

The Arrange method performs the arrangement by computing the adorner's location and other applicable transforms, and then calls Arrange on the adorner with the computed rectangle.

.NET Framework Security

See Also

Reference

AdornerLayout Class

Microsoft.Windows.Design.Interaction Namespace

AdornerPanel

PrimarySelectionAdornerProvider

Other Resources

Walkthrough: Creating a Design-time Adorner

Adorner Architecture