Plugin.Toasts.MessageView.IsStatusBarLandscape C# (CSharp) Method

IsStatusBarLandscape() private method

private IsStatusBarLandscape ( UIInterfaceOrientation orientation ) : bool
orientation UIInterfaceOrientation
return bool
        private bool IsStatusBarLandscape(UIInterfaceOrientation orientation)
        {
            return orientation == UIInterfaceOrientation.LandscapeLeft ||
                   orientation == UIInterfaceOrientation.LandscapeRight;
        }