Notepad ++插件 - 查找并突出显示文本

时间:2014-01-31 11:26:08

标签: c# plugins notepad++ scintilla

如何在 c#中编写记事本++的插件,为scintilla文档中的查找文本设置和删除颜色。我尝试了以下代码:

Win32.SendMessage(PluginBase.GetCurrentScintilla(), SciMsg.SCI_STYLESETBACK, 0, 0xFFFF00);

帮我突出显示特定文字。

1 个答案:

答案 0 :(得分:0)

如果您想更改selection background color,请尝试:

Win32.SendMessage(PluginBase.GetCurrentScintilla(),
                  SciMsg.SCI_SETSELBACK, 1, 0xFFFF00);

如果您想更改selection foreground color,请尝试:

Win32.SendMessage(PluginBase.GetCurrentScintilla(),
                  SciMsg.SCI_SETSELFORE, 1, 0xFF0000);

要重置默认颜色,请传递0而不是1