Called when a new row is adding.

Namespace: Dapfor.Net.Ui
Assembly: Dapfor.Net (in Dapfor.Net.dll) Version: 2.10.3.24917 (2.10.3.24917)

Syntax

C#
protected virtual void OnRowAdding(
	Row parentRow,
	ref Object dataObject,
	ref InsertionType insertionType
)
Visual Basic
Protected Overridable Sub OnRowAdding ( 
	parentRow As Row,
	ByRef dataObject As Object,
	ByRef insertionType As InsertionType
)
Visual C++
protected:
virtual void OnRowAdding(
	Row^ parentRow, 
	Object^% dataObject, 
	InsertionType% insertionType
)
F#
abstract OnRowAdding : 
        parentRow : Row * 
        dataObject : Object byref * 
        insertionType : InsertionType byref -> unit 
override OnRowAdding : 
        parentRow : Row * 
        dataObject : Object byref * 
        insertionType : InsertionType byref -> unit 

Parameters

parentRow
Type: Dapfor.Net.Ui..::..Row
The parent row.
dataObject
Type: System..::..Object%
The data object.
insertionType
Type: Dapfor.Net.Ui..::..InsertionType%
Insertion type.

See Also