Smartmobili.Cocoa.NSView.IsRotatedFromBase C# (CSharp) Method

IsRotatedFromBase() public method

public IsRotatedFromBase ( ) : bool
return bool
        public virtual bool IsRotatedFromBase()
        {
            if (_is_rotated_from_base)
            {
                return true;
            }
            else if (_super_view != null)
            {
                return _super_view.IsRotatedFromBase();
            }
            else
            {
                return false;
            }
        }
NSView