SIL.FieldWorks.IText.StatisticsView.PopulateCtrlTabTargetCandidateList C# (CSharp) Method

PopulateCtrlTabTargetCandidateList() public method

Gather up suitable targets to Cntrl-(Shift-)Tab into.
public PopulateCtrlTabTargetCandidateList ( List targetCandidates ) : Control
targetCandidates List List of places to move to.
return System.Windows.Forms.Control
		public Control PopulateCtrlTabTargetCandidateList(List<Control> targetCandidates)
		{
			targetCandidates.Add(this);
			return this;
		}