I’m wondering if this is expected behavior:
Using the windows forms SyntaxEdit control with the following:
SyntaxEdit.Lines.TabStops = new int {4};
SyntaxEdit.Lines.UseSpaces = true;
SelectionType.Stream -
Pressing tab advances me to column 4 regardless of where i begin within column 1-3 (i.e. as I expect a tabstop to work)
SelectionType.Block (with multiple rows selected for edit) -
Pressing tab advances me 4 columns (e.g. if I start at column 2 I am advanced to column 6)
This leads me to believe that in Block mode we’re not using tabstops, or at least if the option is available I don’t know where that might be.
Any advice/workaround/etc. here?
Thanks!