private void SelectAll(object sender, EventArgs e)
        {
            SelectWholeDocument selectAll = new SelectWholeDocument();

            selectAll.Execute(textEditorControl);
        }
Ejemplo n.º 2
0
        /// <summary>
        /// すべて選択
        /// </summary>
        public void SelectAllText()
        {
            IEditAction action = new SelectWholeDocument();

            action.Execute(ActiveTextArea);
        }