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

Syntax

C# 
public event BeforeCommandEventHandler BeforeUpdate()

Example

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

    e.Cancelled = true; 

    

Requirements

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

See Also