Kofax DM API Manual de usuario Pagina 110

  • Descarga
  • Añadir a mis manuales
  • Imprimir
  • Pagina
    / 528
  • Tabla de contenidos
  • MARCADORES
  • Valorado. / 5. Basado en revisión del cliente
Vista de pagina 109
90 CHAPTER 3
PCDPropertyList
'Note that this example retrieves each value 2
'times.
Public oListFormProps As New PCDPropertyList
Private Sub cbCancel_Click()
Unload ListForm
End Sub
Private Sub Form_Load()
Dim nTotalElements As Integer
Dim nResult As Long
nTotalElements = oListFormProps.GetSize
'Prime the pump by setting the index element to 0
'so program can iterate through the PCDProperties
'array.
nResult = oListFormProps.BeginIter
nTotalElements = nTotalElements * 2
'In this way we are able to go through the
'entire list of elements.
For i = 1 To nTotalElements
lstPropName.AddItem _
oListFormProps.GetCurrentPropertyName
lstPropertyValue.AddItem _
oListFormProps.GetCurrentPropertyValue
nResult = oListFormProps.NextProperty
Next i
lstPropName.ListIndex = 0
lstPropertyValue.ListIndex = 0
End Sub
Vista de pagina 109
1 2 ... 105 106 107 108 109 110 111 112 113 114 115 ... 527 528

Comentarios a estos manuales

Sin comentarios