Here are the examples of the csharp api class Poderosa.Terminal.XTerm.GetPrevTabStop(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 ProcessBackwardTab(string param) { int n = ParseInt(param, 1); int t = _manipulator.CaretColumn; for (int i = 0; i < n; i++) t = GetPrevTabStop(t); if (t < 0) t = 0; _manipulator.CaretColumn = t; }