Layout.SetIndexBasedLayoutOrientation(IndexBasedLayoutOrientation) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Sets the value of the IndexBasedLayoutOrientation
property.
protected:
virtual void SetIndexBasedLayoutOrientation(IndexBasedLayoutOrientation orientation) = SetIndexBasedLayoutOrientation;
void SetIndexBasedLayoutOrientation(IndexBasedLayoutOrientation const& orientation);
protected void SetIndexBasedLayoutOrientation(IndexBasedLayoutOrientation orientation);
function setIndexBasedLayoutOrientation(orientation)
Protected Sub SetIndexBasedLayoutOrientation (orientation As IndexBasedLayoutOrientation)
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
public class MyHorizontalLayout : NonVirtualizingLayout
{
public class MyHorizontalLayout()
{
SetIndexBasedLayoutOrientation(IndexBasedLayoutOrientation.LeftToRight);
Debug.Assert(this.IndexBasedLayoutOrientation == IndexBasedLayoutOrientation.LeftToRight);
}
}