LayoutFarm.CustomWidgets.EaseBox.RemoveSelf C# (CSharp) Method

RemoveSelf() public method

public RemoveSelf ( ) : void
return void
        public void RemoveSelf()
        {
            var parentBox = this.CurrentPrimaryRenderElement.ParentRenderElement as LayoutFarm.RenderElement;
            if (parentBox != null)
            {
                parentBox.RemoveChild(this.CurrentPrimaryRenderElement);
            }
            this.InvalidateOuterGraphics();
        }
        //----------------------------------------------------