FZ_FormBase.GetItemList
Gets a list of title names and identification names of the processing items built into the system
Public Function GetItemList( _
ByVal itemKind As Integer, _
ByRef itemTitle As ArrayList, _
ByRef itemIdent As ArrayList _
) As Integer
Parameters
itemKind
|
Category of the processing item to be gotten
|
Input
|
itemTitle
|
String list for storing the title name to be obtained of the processing item
|
Output
|
itemIdent
|
String list for storing the identification name to be obtained of the processing item
|
Output
|
The categories of processing items are as follows:
Table: GetItemList - Parameters
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
|
Return Value
Returns 0 when the list of title and identification names are successfully obtained.
If failed to get, returns a non-zero value.
Description
Gets a list of title names and identification names of the processing items built into the system.
Obtained information is stored as ArrayList type data.
Example
Protected Sub Initialize()
Dim itemTitle As ArrayList
Dim itemIdent As ArrayList
' Gets the title and identification name of the processing item related to the general measurement
GetItemList(0, itemTitle, itemIdent)
End Sub