AGS.Editor.SplashPage.ArrangeTagLine C# (CSharp) Method

ArrangeTagLine() private method

private ArrangeTagLine ( string tagLine ) : void
tagLine string
return void
        private void ArrangeTagLine(string tagLine)
        {
            lblSeparator.Visible = true;
            lblSeparator.Width = lblTitle.Width;
            lblSeparator.Left = (this.Width - lblSeparator.Width) / 2;
            lblSeparator.Top = lblTitle.Bottom + lblTitle.Height / 4;

            lblTagLine.Visible = true;
            lblTagLine.Font = new Font(Design.FontName, Design.TagLineFontPt, FontStyle.Bold);
            lblTagLine.Text = tagLine;
            lblTagLine.Left = (this.Width - lblTagLine.Width) / 2;
            lblTagLine.Top = lblSeparator.Bottom + lblTagLine.Height / 4;
        }