This topic has not yet been rated - Rate this topic

VariableSizedWrapGrid.Orientation property

Gets or sets the direction in which child elements are arranged.

Syntax


public Orientation Orientation { get; set; }


<VariableSizedWrapGrid Orientation="orientationMemberName" />

Property value

Type: Orientation

A value of the enumeration. The default is Vertical.

Remarks

The Orientation property specifies whether the grid adds its items in rows or columns before wrapping.

When the value is Vertical, the grid adds items in columns from top to bottom, then wraps from left to right, like this:

Item 1Item 4Item 7
Item 2Item 5Item 8
Item 3Item 6Item 9

 

When the value is Horizontal, the grid adds items in rows from left to right, then wraps from top to bottom, like this:

Item 1Item 2Item 3
Item 4Item 5Item 6
Item 7Item 8Item 9

 

Requirements

Minimum supported client

Windows 8

Minimum supported server

Windows Server 2012

Namespace

Windows.UI.Xaml.Controls
Windows::UI::Xaml::Controls [C++]

Metadata

Windows.winmd

See also

VariableSizedWrapGrid

 

 

Build date: 3/12/2013

© 2013 Microsoft. All rights reserved.