// Copyright (c) Microsoft Corporation. // Licensed under the MIT License. namespace Microsoft.MixedReality.Toolkit.Utilities { /// /// Describes where parent should be located /// relative to child layout elements. /// public enum LayoutAnchor { /// /// Parent will be in upper left corner of collection /// UpperLeft, /// /// Parent will be in upper center of collection /// UpperCenter, /// /// Parent will be in upper right of collection /// UpperRight, /// /// Parent will be in middle left of collection /// MiddleLeft, /// /// Parent will be in middle center of collection /// MiddleCenter, /// /// Parent will be in middle right of collection /// MiddleRight, /// /// Parent will be in bottom left of collection /// BottomLeft, /// /// Parent will be in bottom center of collection /// BottomCenter, /// /// Parent will be in bottom right of collection /// BottomRight }; }