ComponentFactory.Krypton.Ribbon.ViewDrawRibbonGroupSeparator.Dispose C# (CSharp) Method

Dispose() protected method

Clean up any resources being used.
protected Dispose ( bool disposing ) : void
disposing bool true if managed resources should be disposed; otherwise, false.
return void
        protected override void Dispose(bool disposing)
        {
            if (disposing)
            {
                // Must unhook to prevent memory leaks
                _ribbonSeparator.PropertyChanged -= new PropertyChangedEventHandler(OnSeparatorPropertyChanged);

                // Remove association with definition
                _ribbonSeparator.SeparatorView = null;
                _ribbonSeparator = null;
            }

            base.Dispose(disposing);
        }