/// <summary> /// Copies the given text to the clipboard /// </summary> /// <param name="text">Text to be copied</param> public void Copy(string text) { NativeScintilla.CopyText(text.Length, text); }