Ei kuvausta
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

PersonNameFormatterStyle.cs 1.0KB

123456789101112131415161718192021222324252627282930313233
  1. namespace AppleAuth.Enums
  2. {
  3. /// <summary>
  4. /// NSPersonNameComponentsFormatter
  5. /// </summary>
  6. public enum PersonNameFormatterStyle
  7. {
  8. /// <summary>
  9. /// The minimally necessary features for differentiation in a casual setting. Equivalent to NSPersonNameComponentsFormatterStyleMedium.
  10. /// </summary>
  11. Default = 0,
  12. /// <summary>
  13. /// Relies on user preferences and language defaults to display shortened form appropriate for display in space-constrained settings.
  14. /// </summary>
  15. Short = 1,
  16. /// <summary>
  17. /// The minimally necessary features for differentiation in a casual setting. Equivalent to NSPersonNameComponentsFormatterStyleDefault.
  18. /// </summary>
  19. Medium = 2,
  20. /// <summary>
  21. /// The fully qualified name complete with all known components.
  22. /// </summary>
  23. Long = 3,
  24. /// <summary>
  25. /// The maximally abbreviated form of a name.
  26. /// </summary>
  27. Abbreviated = 4,
  28. }
  29. }