Layout.SetIndexBasedLayoutOrientation(IndexBasedLayoutOrientation) Method

Definition

Sets the value of the IndexBasedLayoutOrientation property.

C#
protected void SetIndexBasedLayoutOrientation(IndexBasedLayoutOrientation orientation);

Parameters

orientation
IndexBasedLayoutOrientation

A value of the enumeration that indicates the orientation, if any, in which items are laid out based on their index in the source collection.

Examples

C#
public class MyHorizontalLayout : NonVirtualizingLayout
{
    public class MyHorizontalLayout()
    {
        SetIndexBasedLayoutOrientation(IndexBasedLayoutOrientation.LeftToRight);
        Debug.Assert(this.IndexBasedLayoutOrientation == IndexBasedLayoutOrientation.LeftToRight);
    }
}

Applies to

Product Versions
Windows App SDK 1.4, 1.5, 1.6

See also