Petteri Kautonen
Petteri Kautonen
Changind the Scintilla Text property setter from this: ```cs set { if (string.IsNullOrEmpty(value)) { DirectMessage(NativeMethods.SCI_CLEARALL); } else if (value.Contains("\0")) { DirectMessage(NativeMethods.SCI_CLEARALL); AppendText(value); } else { fixed (byte* bp = Helpers.GetBytes(value,...
Version [3.8.5](https://www.nuget.org/packages/unofficial.ScintillaNET/3.8.5) should now include the change - thank you 👍
Perhaps there is some kind of a layout thing happening, since you are doing all at once. I tried with 32, 64 and Any CPU with prefer 32-bit on/off and...
Hi, The line: `Scintilla.CurrentLine` The column: `Scintilla.GetColumn(Scintilla.CurrentPosition)` The current position: `Scintilla.CurrentPosition`
Nothing prevents you from displaying these values, just add a StatusStrip to the form and update the values when they change.
I have the exact same problem - any solutions yet?
Hi, I found a work-around.. this is not a solution for the problem. * Only set a volatile string value when clicking the link to contain the link's address. *...
Hi, As you can see, the previous change in this repository is at Oct 31, 2018 - I forked this repository, refactored, re-structured it and made it possible to be...
Hi, Do you have a sample of the call, I tried using the example from the Scintilla documentation, but now wow-effect happened: ```cs private void mnuTestMethod_Click(object sender, EventArgs e) {...
Thanks, the documentation was a bit confusing indeed - seems to work understanding how to use this:  I'll document the methods and add them to the fork. Thanks again!