コード例 #1
0
        /// <summary>Clear Highlights From Scintilla Control</summary>
        /// <param name="sci">Scintilla Control Name</param>
        public static void ClearHighlights(this Scintilla Sci)
        {
            _ScintillaControl sci = new _ScintillaControl();

            // Remove all uses of our indicator
            sci.ClearHighlights(Sci);
        }
コード例 #2
0
        private void btnCancel_Click(object sender, EventArgs e)
        {
            _ScintillaControl sci = new _ScintillaControl();

            sci.ClearHighlights(selectedScintilla);
            //this.Close();
        }