13 questions
0 votes
3 answers
67 views
ScintillaNET 2.2 – Dropdown Not Showing Until Resizing Window in .NET 4.8
I'm working on an old C# .NET 4.8 project for my company. It uses ScintillaNET 2.2.7895.17875 to create a custom code editor. There's a dropdown arrow (highlighted in red in my attached image) that ...
0 votes
0 answers
95 views
How do I make indicators different colors for different words?
I'm making a program which allows you to search for terms, and they'll all be colored in a respective color (i.e. you're searching for "wood" and "length", each occurance of wood ...
0 votes
1 answer
167 views
ScintillaNET: how to get surrounding symbols of a clicked word
I'm using ScintillaNET in VisualStudio/C#. When the user clicks (LMB or RMB) a specific word inside the text, I need to get the surrounding symbols. For example: This is <a test> to show my <...
1 vote
1 answer
483 views
Python auto-indentation in ScintillaNET
i am working on a Winforms application with ScintillaNET. I realized that ScintillaNET itself has no auto-indentation feature. You would have to create one yourself. I have searched online and found a ...
7 votes
1 answer
343 views
How to prevent ScintillaNET control from auto scrolling?
I am using a ScintillaNET control in my C# Winforms application. I am trying to implement an auto-tag feature that will auto-complete the tag before, for example, when a user types <html>, auto-...
0 votes
1 answer
284 views
Protect a range of text in ScintillaNet: what is the best way to do it?
I know that styles have an attribute to allow/avoid changes in the text in which they are applied: SCI_STYLESETCHANGEABLE(int style, bool changeable) However, the documentation says "This is an ...
0 votes
1 answer
356 views
Print line number when printing the contents from the ScintillaNet
I'm trying to create an IDE using ScintillaNET and I'm using ScintillaNet as by editor, Is there a way to get the line numbers included with the ScintillaNet when I print my text?
0 votes
1 answer
629 views
Detect cursor is over comment or string in Scintilla NET
Is there any built in function in Scintilla.NET to detect the cursor is over a comment or string? I'd want to avoid the autocompletion to work when the user is typing comments or strings. I'm aware I ...
-1 votes
1 answer
197 views
List of Python keywords that are valid within (lambda) expression
For code completion with Scintilla.Net i need the list of keywords that are valid in an expression. You can get all keywords via the "keyword" module, but for example "raise" and "print" cannot be ...
2 votes
2 answers
928 views
How to implement ScintillaNET column edit mode
I need a text editor control for column edit in my application. Like notepad++ alt+mouse drag to select a text block , or pull down a long vertical cursor and press a key to insert a char to every ...
6 votes
1 answer
1k views
ScintillaNET not showing folding for method blocks
I'm using the ScinctillaNET editor, and, the problem I have is that it does not show the "[+]" and the "[-] folding symbols for methods, at least for the Vb.Net lexer as shown in this image: ( notice ...
0 votes
1 answer
347 views
link in scintillaNET editor possibility
How to give link to a text which is typed in scintillaNET editor? Is it possible. Any suggestion would be appreciable. Thanks in advance
0 votes
1 answer
2k views
How to change Font's ForeColor in ScintillaNet?
I want to Change Scintilla Net Text Editor's Font Fore color to Black in C#.Net. i changed like in C# font color. But it doesn't work. How can i do that? Is that change in Styles? Please Please.......