C1Editor 中高亮查找文字

C1Editor 是类似于 MS Word 和 MS FrontPage 文字编辑控件。用户可以使用 C1Editor 接口去搜索文字。所以,通常用户想实现搜索结果高亮的效果。这篇文章将通过代码介绍怎么使用 C1Editor 搜索并且高亮搜索结果。

发布于 2012/11/15 00:00

ComponentOne Enterprise

C1Editor 中高亮查找文字

C1Editor 是类似于 MS Word 和 MS FrontPage 文字编辑控件。用户可以使用 C1Editor 接口去搜索文字。所以,通常用户想实现搜索结果
高亮的效果。这篇文章将通过代码介绍怎么使用 C1Editor 搜索并且高亮搜索结果。

参考代码:

 
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;
                        }
                    }
                }
            }
复制代码

环境:C1 Studio for Windows && VS 2010

关于葡萄城

葡萄城软件是专业的软件开发技术和低代码平台提供商,以“赋能开发者”为使命,致力于通过表格控件、低代码和BI等各类软件开发工具和服务,一站式满足开发者需求,帮助企业提升开发效率并创新开发模式。葡萄城开发技术始于1980年,40余年来始终聚焦软件开发技术,有深厚的技术积累和丰富的产品线。是业界能够同时赋能软件开发和低代码开发的企业。凭借过硬的产品能力、活跃的用户社区和丰富的伙伴生态,与超过3000家合作伙伴紧密合作,产品广泛应用于信息和软件服务、制造、交通运输、建筑、金融、能源、教育、公共管理等支柱产业。

相关产品
推荐相关案例
关注微信
葡萄城社区二维码

关注“葡萄城社区”

活字格低代码二维码

关注“活字格低代码”

想了解更多信息,请联系我们, 随时掌握技术资源和产品动态