创建一个包含了 Boolean 类型的 TRUE 或 FALSE 的 XLOPER/XLOPER12
LPXLOPER TempBool(int b);
LPXLOPER12 TempBool12(int b);
参数
b (int)
使用 0 返回 FALSE,其它任何值返回 TRUE
返回值/属性值
返回一个要传回的逻辑值
实例
The following example uses the TempBool12 function to clear the status bar. Temporary memory is freed when the Excel/Excel12f function is called.
下面的实例使用 TempBool12 函数清除状态栏,临时变会在调用了 Excel/Excel12f 函数后清除。
short int WINAPI TempBoolExample(void)
{
Excel12f(xlcMessage, 0, 1, TempBool12(0));
return 1;
}