// Copyright (c) Microsoft Corporation. // Licensed under the MIT License. namespace Microsoft.MixedReality.Toolkit.Utilities { /// /// Collection layout type enum /// public enum LayoutOrder { /// /// Sort by column, then by row /// ColumnThenRow = 0, /// /// Sort by row, then by column /// RowThenColumn, /// /// Sort horizontally /// Horizontal, /// /// Sort vertically /// Vertical } }