// Token: 0x06006D44 RID: 27972 RVA: 0x001F5DC4 File Offset: 0x001F3FC4
        private void PushEditingBehavior(EditingBehavior newEditingBehavior)
        {
            EditingBehavior activeEditingBehavior = this.ActiveEditingBehavior;

            if (activeEditingBehavior != null)
            {
                activeEditingBehavior.Deactivate();
            }
            this._activationStack.Push(newEditingBehavior);
            newEditingBehavior.Activate();
        }
        // Token: 0x06006D45 RID: 27973 RVA: 0x001F5DF4 File Offset: 0x001F3FF4
        private void PopEditingBehavior()
        {
            EditingBehavior activeEditingBehavior = this.ActiveEditingBehavior;

            if (activeEditingBehavior != null)
            {
                activeEditingBehavior.Deactivate();
                this._activationStack.Pop();
                activeEditingBehavior = this.ActiveEditingBehavior;
                if (this.ActiveEditingBehavior != null)
                {
                    activeEditingBehavior.Activate();
                }
            }
        }