Exemple #1
0
 /// <summary>
 /// Raises the <see cref="E:AutoBankedCard"/> event.
 /// </summary>
 /// <param name="args">The <see cref="FreeCell.Library.AutoBankEventArgs"/> instance containing the event data.</param>
 protected void OnAutoBankedCard(AutoBankEventArgs args)
 {
     if (AutoBankedCard != null)
     {
         AutoBankedCard(this, args);
     }
 }
Exemple #2
0
 /// <summary>
 /// Raises the <see cref="E:AutoBankingCard"/> event.
 /// </summary>
 /// <param name="args">The <see cref="FreeCell.Library.AutoBankEventArgs"/> instance containing the event data.</param>
 protected void OnAutoBankingCard(AutoBankEventArgs args)
 {
     if (AutoBankingCard != null)
         AutoBankingCard(this, args);
 }