XLL+ Class Library

COper::IsMissing() Example

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

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

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

Uses

COper::IsMissing