|
[广告] VBA代码宝 - VBA编程加强工具 · VBA代码随查随用 · 内置多项VBA编程加强工具 ★ 免费下载 ★ ★ 使用手册★
CXlOper* wx_Impl(CXlOper& xloResult, const CXlOper* Arg1_op, const CXlOper*
Arg2_op)
{
// Input buffers
std::vector<CString> Arg1;
std::vector<CString> Arg2;
// Validate and translate inputs
XlReadVector(*Arg1_op, Arg1, L"Arg1", XLA_TRUNC_ONEMPTY|XLA_TRUNC_ONBLANK);
XlReadVector(*Arg2_op, Arg2, L"Arg2", XLA_TRUNC_ONEMPTY|XLA_TRUNC_ONBLANK);
// End of generated code
//}}XLP_SRC
// TODO - set the value of xloResult, or return another value
// using CXlOper::RetXXX() or throw a CXlRuntimeException.
return xloResult.Ret();
}
这个函数的定义我不懂,请帮忙解释一下!! |
|