2.1.13.7 GetSPCLog


Description

Get SPC log information from worksheet

Syntax

string GetSPCLog( LPCSTR lpcszWksName, int nCol )

Parameters

lpcszWksName
[input] Worksheet name
nCol
[input] Column index from 0

Return

The string contents ASCII format log

Examples

EX1

// For this example to run, a worksheet should exist in the project.
int OKdll_GetSPCLog_Ex1()
{
    string strInfo;
    strInfo = GetSPCLog(Project.WorksheetPages(0).GetName(), 0);
    out_str(strInfo);
    return 0;
}

Remark

Get SPC log information from worksheet

See Also

Header to Include

origin.h

Reference