XLL+ Class Library

COper::IsEmpty() Example

//{{XLP_SRC(OperIsEmptyExample)
    // NOTE - the FunctionWizard will add and remove mapping code here.
    //    DO NOT EDIT what you see in these blocks of generated code!
IMPLEMENT_XLLFN2(OperIsEmptyExample, "RP", "OperIsEmptyExample",
    "Arg1", "Example", "Demonstrates COper::IsEmpty()", 
    "Argument 1\000", "\0", 1)

extern "C" __declspec( dllexport )
LPXLOPER OperIsEmptyExample(const COper* lpopArg1)
{
    CXlOper xloResult;
//}}XLP_SRC

    xloResult = lpopArg1->IsEmpty();
    return xloResult.Ret();
}

Uses

COper::IsEmpty