Denso BHT-200QW Dokumentacja Strona 138

  • Pobierz
  • Dodaj do moich podręczników
  • Drukuj
  • Strona
    / 377
  • Spis treści
  • BOOKMARKI
  • Oceniono. / 5. Na podstawie oceny klientów
Przeglądanie stron 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);
}
Przeglądanie stron 137
1 2 ... 133 134 135 136 137 138 139 140 141 142 143 ... 376 377

Komentarze do niniejszej Instrukcji

Brak uwag