SIPSorcery.AssetListMenuBar.EnableHelp C# (CSharp) Method

EnableHelp() public method

Used to enable or disable the Help button on the menu bar.
public EnableHelp ( bool isEnabled ) : void
isEnabled bool True to enable the Delete button so it appears on the menu bar, false to disable it.
return void
        public void EnableHelp(bool isEnabled)
        {
            if (isEnabled)
            {
                UIHelper.SetVisibility(m_helpButton, Visibility.Visible);
            }
            else
            {
                UIHelper.SetVisibility(m_helpButton, Visibility.Collapsed);
            }
        }