CTCOfficeGUI.InfoPanel.AdjustLabelPositions C# (CSharp) Method

AdjustLabelPositions() private method

Adjusts the location of the field labels to align nicely
private AdjustLabelPositions ( ) : void
return void
        private void AdjustLabelPositions()
        {
            for (int i = 0; i < NUM_LABELS; i++)
            {
                //Right align the labels
                m_fieldLabels[i].Left = m_valueLabels[i].Left - m_fieldLabels[i].Width;
            }
        }