| 12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- // ******************************************************************
- // Copyright (c) Microsoft. All rights reserved.
- // This code is licensed under the MIT License (MIT).
- // THE CODE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED,
- // INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
- // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
- // IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,
- // DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
- // TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH
- // THE CODE OR THE USE OR OTHER DEALINGS IN THE CODE.
- // ******************************************************************
- namespace Microsoft.Toolkit.Uwp.Notifications
- {
- /// <summary>
- /// TextStacking specifies the vertical alignment of content.
- /// </summary>
- public enum AdaptiveSubgroupTextStacking
- {
- /// <summary>
- /// Renderer automatically selects the default vertical alignment.
- /// </summary>
- Default,
- /// <summary>
- /// Vertical align to the top.
- /// </summary>
- [EnumString("top")]
- Top,
- /// <summary>
- /// Vertical align to the center.
- /// </summary>
- [EnumString("center")]
- Center,
- /// <summary>
- /// Vertical align to the bottom.
- /// </summary>
- [EnumString("bottom")]
- Bottom
- }
- }
|