AGS.Editor.ScintillaWrapper.SetSelection C# (CSharp) Метод

SetSelection() публичный Метод

public SetSelection ( int pos, int length ) : void
pos int
length int
Результат void
        public void SetSelection(int pos, int length)
        {
            scintillaControl1.EnsureVisible(scintillaControl1.LineFromPosition(pos));
            scintillaControl1.SetSel(pos, pos + length);
        }
ScintillaWrapper