Denso BHT-200QW Specifiche Pagina 138

  • Scaricare
  • Aggiungi ai miei manuali
  • Stampa
  • Pagina
    / 377
  • Indice
  • SEGNALIBRI
  • Valutato. / 5. Basato su recensioni clienti
Vedere la pagina 137
- 136 -
OnDone
This event occurs when decoding is complete.
Syntax
[VB]
Public Event OnDone As EventHandler
[C#]
public event EventHandler OnDone
Event data
The Event Handler has received EventArgs type parameters.
The second parameter EventArgs e is always System.EventArgs.Empty.
[Ex.] Read data when decoding complete.
[VB]
Private Sub MyScanner_OnDone(ByVal sender As Object, ByVal e As System.EventArgs)
Handles MyScanner.OnDone
Dim ReadBuf(Scanner.MAX_BAR_LEN) As Byte
MyScanner.Input(ReadBuf, 0, Scanner.ALL_BUFFER)
End Sub
[C#]
private void MyScanner_OnDone(object sender, EventArgs e)
{
byte[] ReadBuf = new byte[Scanner.MAX_BAR_LEN];
MyScanner.Input(ReadBuf, 0, Scanner.ALL_BUFFER);
}
Vedere la pagina 137
1 2 ... 133 134 135 136 137 138 139 140 141 142 143 ... 376 377

Commenti su questo manuale

Nessun commento