Ejemplo n.º 1
0
 private void HandleRecordStarted(object sender, FtRecordStartedEventArgs e)
 {
     for (int i = 0; i < recObjects.Length; i++)
     {
         recObjects[i] = null;
     }
 }
Ejemplo n.º 2
0
 internal protected void OnRecordStarted(int recordIndex)
 {
     if (RecordStarted != null)
     {
         FtRecordStartedEventArgs e = new FtRecordStartedEventArgs();
         e.RecordIndex = recordIndex;
         RecordStarted.Invoke(this, e);
     }
 }