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

ProviderShowSubMenuFixed() public method

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