smartDBforms.NET API Reference

BaseSmartDBControl.CustomEvent Event

Allows the template developer to send custom events to the containing BaseSmartDBControl. When you handle this event you must determine your logic by inspecting the exact type of the Event property. One implementaion of this class is ValidateCustomEvent

[Visual Basic]
Public Event CustomEvent As BaseSmartDBControlCustomEventHandler
[C#]
public event BaseSmartDBControlCustomEventHandler CustomEvent;

Event Data

The event handler receives an argument of type BaseSmartDBControlCustomEventArgs containing data related to this event. The following BaseSmartDBControlCustomEventArgs property provides information specific to this event.

Property Description
Event The event object. This is a specific implementation of CustomEvent. You should check its type and take actions accordingly.

Remarks

This event is fired by the template. Only the template's implementation determines which events and when to fire.

See Also

BaseSmartDBControl Class | Adillis.SmartDBForms Namespace