【XLL 框架库函数】 TempActiveCell/TempActiveCell12
这两个函数创建 XLOPER/XLOPER12 ,包含了当前激活工作表上的单元格引用。
LPXLOPER TempActiveCell(WORD row, BYTE col);
LPXLOPER12 TempActiveCell12(RW row, COL co);
参数
row
引用行号,行号参数是从0开始的,因此 第一行就是0.
col
引用列号,从0开始。
返回值
返回 xltypeRef 外部引
实例
The following example uses TempActiveCell12 to display the contents of B94 on the active sheet.
\SAMPLES\EXAMPLE\EXAMPLE.C
short WINAPI TempActiveCellExample(void)
{
Excel12f(xlcAlert, 0, 1, TempActiveCell12(93,1));
return 1;
}