SIL.FieldWorks.Common.Widgets.LabeledMultiStringControl.Select C# (CSharp) Method

Select() protected method

Activates a child control.
protected Select ( bool directed, bool forward ) : void
directed bool true to specify the direction of the control to select; otherwise, false.
forward bool true to move forward in the tab order; false to move backward in the tab order.
return void
		protected override void Select(bool directed, bool forward)
		{
			base.Select(directed, forward);
			if (!directed)
				SelectNextControl(null, forward, true, true, false);
		}

Same methods

LabeledMultiStringControl::Select ( int ws, int start, int length ) : void