public virtual void OnTableValidationRequest(TableEventArgs e) { EventHandler <TableEventArgs> handler = TableValidationRequest; if (handler != null) { handler(this, e); } }
private void DiagrammerEnvironment_TableValidationRequest(object sender, TableEventArgs e) { // Validate Table this.errorList1.Validate2(e.Table); }
public virtual void OnTableValidationRequest(TableEventArgs e) { EventHandler<TableEventArgs> handler = TableValidationRequest; if (handler != null) { handler(this, e); } }