//
// UniWebViewTransitionEdge.cs
// Created by Wang Wei(@onevcat) on 2015-11-16.
//
///
/// Transition edges of webview. You can specify an edge in Show() or Hide() methods of web view.
///
public enum UniWebViewTransitionEdge
{
///
/// No transition when showing or hiding.
///
None = 0,
///
/// Transit the web view from/to top.
///
Top,
///
/// Transit the web view from/to left.
///
Left,
///
/// Transit the web view from/to bottom.
///
Bottom,
///
/// Transit the web view from/to right.
///
Right
}