QuickObjects.ObjectBase Send comments on this topic.
BeforeInsert Event
See Also  Example
Akal.QuickObjects.ObjectBase Namespace > BaseBusinessObject Class : BeforeInsert Event
Occurs when an object is about to execute Insert command. This event can be used to cancel the command, by setting the Cancelled member of the event arguments.

Syntax

C# 
public event BeforeCommandEventHandler BeforeInsert()

Example

C#Copy Code
private void HandleBeforeInsert(object sender, BeforeCommandEventArgs e) 

    e.Cancelled = true; 

    

Requirements

Target Platforms: .NET Framework 1.1 or .NET Framework 2.0

See Also