Habanero.Faces.Base.FlowLayoutManager.SetUpTabIndexForAlignmentRight C# (CSharp) Method

SetUpTabIndexForAlignmentRight() private static method

private static SetUpTabIndexForAlignmentRight ( int rowStart, IList controlsInRow ) : void
rowStart int
controlsInRow IList
return void
        private static void SetUpTabIndexForAlignmentRight(int rowStart, IList controlsInRow)
        {
            for (int ctlCount = 0; ctlCount < controlsInRow.Count; ctlCount++)
            {
                IControlHabanero controlInRow = (IControlHabanero)controlsInRow[controlsInRow.Count - 1 - ctlCount];
                {
                    controlInRow.TabIndex = rowStart + ctlCount;
                }
            }
        }