
https://getquicker.net/Sharedaction?code=b5bd6cc2-00ff-4478-8121-08de58b6b715
1.quicker中-C#代码
//.cs 文件类型,便于外部编辑时使用
// 引用必要的命名空间----低权限模式v1 (CodeDOM)
//css_reference C:\Program Files\Quicker\Microsoft.Office.Interop.Word.dll
using Word=Microsoft.Office.Interop.Word;
// Quicker将会调用的函数
public static string Exec(string paramValue)
{
var winObj = (Word.Application)System.Runtime.InteropServices.Marshal.GetActiveObject("Word.Application");//获取当前启动的word程序
var aa=winObj.Run("aa",paramValue) as String;
return aa;
}

2.wps文档中的jsa代码
function aa(bb)
{
return eval(bb)
}
