AdaptiveSubgroupEnums.cs 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. // ******************************************************************
  2. // Copyright (c) Microsoft. All rights reserved.
  3. // This code is licensed under the MIT License (MIT).
  4. // THE CODE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED,
  5. // INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  6. // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
  7. // IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,
  8. // DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
  9. // TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH
  10. // THE CODE OR THE USE OR OTHER DEALINGS IN THE CODE.
  11. // ******************************************************************
  12. namespace Microsoft.Toolkit.Uwp.Notifications
  13. {
  14. /// <summary>
  15. /// TextStacking specifies the vertical alignment of content.
  16. /// </summary>
  17. public enum AdaptiveSubgroupTextStacking
  18. {
  19. /// <summary>
  20. /// Renderer automatically selects the default vertical alignment.
  21. /// </summary>
  22. Default,
  23. /// <summary>
  24. /// Vertical align to the top.
  25. /// </summary>
  26. [EnumString("top")]
  27. Top,
  28. /// <summary>
  29. /// Vertical align to the center.
  30. /// </summary>
  31. [EnumString("center")]
  32. Center,
  33. /// <summary>
  34. /// Vertical align to the bottom.
  35. /// </summary>
  36. [EnumString("bottom")]
  37. Bottom
  38. }
  39. }