ComponentFactory.Krypton.Toolkit.AntiAlias.Dispose C# (CSharp) Method

Dispose() public method

Revert the SmoothingMode back to original setting.
public Dispose ( ) : void
return void
        public void Dispose()
        {
            if (_g != null)
            {
                try
                {
                    _g.SmoothingMode = _old;
                }
                catch { }
            }
        }