有人可以形容我如何在Scintilla.net中进行缩进工作吗?
this.scintilla1.Indentation.SmartIndentType = ScintillaNet.SmartIndent.Simple;
我很困惑为了让它发挥作用需要做些什么。有人可以描述需要实现哪些事件处理程序才能使缩进工作吗?
答案 0 :(得分:0)
如果Indentation.IndentWidth
也设置为8
,则诀窍是将Indentation.TabWidth
设置为8
。
cource Indentation.SmartIndentType
仍必须设置为Simple
。
答案 1 :(得分:0)
对于希望添加缩进的人-注意ScintillaNET 3.x +的基本代码中没有内置缩进。至少不是从3.6.3起。
请参见this message for an example of sending indentation commands directly to Scintilla。