AGS.Editor.ScintillaWrapper.ReplaceSelectedText C# (CSharp) Method

ReplaceSelectedText() public method

public ReplaceSelectedText ( string withText ) : void
withText string
return void
        public void ReplaceSelectedText(string withText)
        {
            scintillaControl1.ReplaceSel(withText);
        }
ScintillaWrapper