ACAT.Lib.Core.TalkWindowManagement.TalkWindowBase.ZoomIn C# (CSharp) Méthode

ZoomIn() public méthode

Increases the font size in the talk window by a step
public ZoomIn ( ) : void
Résultat void
        public virtual void ZoomIn()
        {
            if (TalkWindowForm != null && TalkWindowTextBox is TextBoxBase)
            {
                TalkWindowForm.Invoke(new MethodInvoker(delegate
                {
                    if (TalkWindowTextBox.Font.Size + FontSizeDelta <= MaxFontSize)
                    {
                        if (setFont(TalkWindowTextBox.Font.Size + FontSizeDelta))
                        {
                            notifyFontChanged();
                        }
                    }
                }));
            }
        }