Here are the examples of the csharp api class Poderosa.Terminal.XTerm.GetNextTabStop(int) taken from open source projects. By voting up you can indicate which examples are most useful and appropriate.
1 Example
0
1. Example
View licenseprivate void ProcessForwardTab(string param) { int n = ParseInt(param, 1); int t = _manipulator.CaretColumn; for (int i = 0; i < n; i++) t = GetNextTabStop(t); if (t >= GetDocument().TerminalWidth) t = GetDocument().TerminalWidth - 1; _manipulator.CaretColumn = t; }