Alsing.Windows.Forms.SyntaxBox.EditViewControl.SelectAll C# (CSharp) Method

SelectAll() public method

Selects all text in the active document. (control + a)
public SelectAll ( ) : void
return void
        public void SelectAll()
        {
            Selection.SelectAll();
            Redraw();
        }