mixedreality/com.microsoft.mixedreality..../SDK/Features/UX/Scripts/Collections/CollectionEnums/LayoutAlignment.cs

25 lines
529 B
C#

// Copyright (c) Microsoft Corporation.
// Licensed under the MIT License.
namespace Microsoft.MixedReality.Toolkit.Utilities
{
/// <summary>
/// Describes how the layout should be arranged horizontally
/// </summary>
public enum LayoutHorizontalAlignment
{
Left,
Center,
Right
};
/// <summary>
/// Describes how the layout should be arranged vertically
/// </summary>
public enum LayoutVerticalAlignment
{
Top,
Middle,
Bottom
};
}