Check documentation for the latest version of dhtmlxSuite End DHTMLX Docs

End

This event occurs after all connector's activity ends.

connector.Begin += new EventHandler(connector_Begin);

This event is mostly useful for stopping logging functionality previously enabled through Begin event.

Sample of usage:

void connector_End(object sender, EventArgs e)
{
  //stop logging
  Log.Enabled = false;
}
Back to top