ComponentFactory.Krypton.Toolkit.GraphicsTextHint.Dispose C# (CSharp) Метод

Dispose() публичный Метод

Reverse the text hint change.
public Dispose ( ) : void
Результат void
        public void Dispose()
        {
            if (_graphics != null)
            {
                try
                {
                    // Put back to the original text hint
                    _graphics.TextRenderingHint = _textHint;
                }
                catch { }
            }
        }