설명 없음
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.

UniWebViewToolbarPosition.cs 1.2KB

1234567891011121314151617181920212223242526272829303132
  1. //
  2. // UniWebViewToolbarPosition.cs
  3. // Created by Wang Wei(@onevcat) on 2017-05-31.
  4. //
  5. // This file is a part of UniWebView Project (https://uniwebview.com)
  6. // By purchasing the asset, you are allowed to use this code in as many as projects
  7. // you want, only if you publish the final products under the name of the same account
  8. // used for the purchase.
  9. //
  10. // This asset and all corresponding files (such as source code) are provided on an
  11. // “as is” basis, without warranty of any kind, express of implied, including but not
  12. // limited to the warranties of merchantability, fitness for a particular purpose, and
  13. // noninfringement. In no event shall the authors or copyright holders be liable for any
  14. // claim, damages or other liability, whether in action of contract, tort or otherwise,
  15. // arising from, out of or in connection with the software or the use of other dealing in the software.
  16. //
  17. /// <summary>
  18. /// Toolbar position of webview. You can set the snapping edge for the built-in toolbar in iOS.
  19. /// </summary>
  20. public enum UniWebViewToolbarPosition
  21. {
  22. /// <summary>
  23. /// Top screen edge.
  24. /// </summary>
  25. Top = 0,
  26. /// <summary>
  27. /// Bottom screen edge.
  28. /// </summary>
  29. Bottom
  30. }