RefreshDisplay() public method

If asked to Refresh, update your results list.
public RefreshDisplay ( ) : bool
return bool
Ejemplo n.º 1
0
        public bool RefreshDisplay()
        {
            ConcordanceControlBase concordanceControl = ReCurseControls(this);

            if (concordanceControl != null)
            {
                concordanceControl.RefreshDisplay();
                return(true);
            }
            Debug.Assert(concordanceControl != null, "ConcordanceContainer is missing the concordance control.");
// ReSharper disable HeuristicUnreachableCode
// (because it's wrong)
            return(false);
// ReSharper restore HeuristicUnreachableCode
        }