AGS.Editor.ScintillaWrapper.SetSelection C# (CSharp) Méthode

SetSelection() public méthode

public SetSelection ( int pos, int length ) : void
pos int
length int
Résultat void
        public void SetSelection(int pos, int length)
        {
            scintillaControl1.EnsureVisible(scintillaControl1.LineFromPosition(pos));
            scintillaControl1.SetSel(pos, pos + length);
        }
ScintillaWrapper