AutoWikiBrowser.MainForm.JsAdapter.UndoDeletion C# (CSharp) Method

UndoDeletion() public method

Reverses the deletion of a line of text from the page
public UndoDeletion ( int left, int right ) : void
left int
right int
return void
            public void UndoDeletion(int left, int right)
            {
                _owner.UndoChangeGeneric(DiffChangeMode.Deletion, left, right);
            }