SIL.FieldWorks.IText.ConcordanceControlBase.RefreshDisplay C# (CSharp) Method

RefreshDisplay() public method

If asked to Refresh, update your results list.
public RefreshDisplay ( ) : bool
return bool
		public bool RefreshDisplay()
		{
			LoadMatches(true);
			//I claim that all descendants which are refreshable have been refreshed -naylor
			return true;
		}
	}

Usage Example

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
        }