SphereStudio.Plugins.FontEditView.FontLayout_CharSelected C# (CSharp) Method

FontLayout_CharSelected() private method

private FontLayout_CharSelected ( object sender, EventArgs e ) : void
sender object
e System.EventArgs
return void
        private void FontLayout_CharSelected(object sender, EventArgs e)
        {
            Character ch = _fontLayout.Characters[_fontLayout.Selection];
            FontSizeLabel.Text = @"Size: " + ch.Width + @" x " + ch.Height;
            FontSizeLabel.Refresh();
        }