ProcUnit::GetItemKind
Gets category number of the processing item of the relevant processing unit
Parameters
None.
Return Value
Returns the category number of the processing item of the relevant processing unit.
Description
Gets the category number of the processing item of the relevant processing unit.
The categories of processing items are as follows:
Table: ProcUnit::GetItemKind - Remarks
Value
|
Description
|
0
|
General measurement-related processing item
|
1
|
Image input-related processing item
|
2
|
Image conversion-related processing item
|
3
|
Measurement support-related processing item
|
4
|
Branch control-related processing items
|
5
|
Result output-related processing item
|
6
|
Result display-related processing item
|
Example
int Sample::MeasureProc(ProcUnit *ptrProcUnit)
{
int itemKind;
// Get the category number of the processing item
itemKind = ptrProcUnit->GetItemKind();
}