ComponentFactory.Krypton.Toolkit.ContextMenuProvider.ProviderShowSubMenuFixedRect C# (CSharp) Method

ProviderShowSubMenuFixedRect() public method

Should the sub menu be shown at fixed screen location for this menu item.
public ProviderShowSubMenuFixedRect ( KryptonContextMenuItem menuItem ) : Rectangle
menuItem KryptonContextMenuItem Menu item that needs to show sub menu.
return System.Drawing.Rectangle
        public Rectangle ProviderShowSubMenuFixedRect(KryptonContextMenuItem menuItem)
        {
            if (HasParentProvider)
                return _parent.ProviderShowSubMenuFixedRect(menuItem);
            else
                return Rectangle.Empty;
        }