Questions tagged [scintillanet]

11 questions
7
votes
1 answer

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 , auto-complete feature will trigger and insert . I'm…
Kirtstar web
  • 147
  • 8
5
votes
1 answer

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 the missing symbol in line number 6 and 32 ) I'm…
ElektroStudios
  • 19,105
  • 33
  • 200
  • 417
2
votes
2 answers

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 lines over cursor. I tried ScintillaNET but it not…
IlPADlI
  • 1,943
  • 18
  • 22
1
vote
1 answer

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 solution to auto-indenting with curly brackets:…
Bob
  • 561
  • 5
  • 17
0
votes
1 answer

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 to show my In this case, if the user clicks over the word…
Alessandro
  • 11
  • 2
0
votes
1 answer

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....answer me..i am having difficult. Thanks you for…
CSharpCrazy
  • 25
  • 1
  • 5
0
votes
1 answer

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 experimental and incompletely implemented style…
Ignotus
  • 564
  • 5
  • 17
0
votes
1 answer

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?
Shiva2794
  • 39
  • 8
0
votes
1 answer

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 can scan the whole text backwards, searching for…
KakCAT
  • 296
  • 1
  • 14
0
votes
1 answer

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
parthi
  • 734
  • 1
  • 4
  • 13
-1
votes
1 answer

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 used in lambda expressions. How can i get the…
Rauhotz
  • 7,914
  • 6
  • 40
  • 44