// reading new variable
string article = project.Variables["article"].Value;
lock(SyncObjects.InputSyncer)
{
// filling the clipboard with the required text
System.Windows.Forms.Clipboard.SetText(article);
// activate window
Emulator.ActiveWindow(instance.FormTitle);
// sending Ctrl+V
System.Windows.Forms.SendKeys.SendWait("^v");
}