您好,登錄后才能下訂單哦!
ComponentOne C1Editor 是類似于 MS Word 和 MS FrontPage 文字編輯控件。用戶可以使用 C1Editor 接口去搜索文字。所以,通常用戶想實(shí)現(xiàn)搜索結(jié)果
高亮的效果。這篇文章將通過代碼介紹怎么使用 C1Editor 搜索并且高亮搜索結(jié)果。
參考代碼:
int length = this.c1Editor1.Text.Length; string searchString = this.textBox1.Text; int searchStringLen = searchString.Length; int result = 0; if (searchStringLen > 0) { for (int i = 0; i <= length; i++ ) { c1Editor1.SelectionStart = c1Editor1.SelectionStart + searchStringLen; if ((i + searchStringLen) <= length) { //compare the text searched with the substring of the C1Editor if (c1Editor1.Text.Substring(i, searchStringLen).ToLower() == searchString.ToLower()) { c1Editor1.Select(i, searchStringLen); //set the backcolor of each occurrence of the word in C1Editor c1Editor1.Selection.ApplyStyle("background-color", "Red"); result = result + 1; } } } }
截圖展示:
cdn.grapecity.com/p_w_upload.aspx?p_w_uploadid=2344">
Demo 下載
很高興能和大家分享 ComponentOne 的使用方法、討論 ComponentOne 使用過程中遇到的問題。
葡萄城控件產(chǎn)品網(wǎng)站:http://www.gcpowertools.com.cn/
葡萄城技術(shù)支持論壇:http://gcdn.grapecity.com/
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請(qǐng)聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。