RecroGridOnCustomFunctionAAsync Method

It is called when a custom function set for RecroGrid is executed.

Definition

Namespace: Recrovit.RecroGridFramework
Assembly: Recrovit.RecroGrid (in Recrovit.RecroGrid.dll) Version: 6.1.0.23.1204.1+9d8b98a22c49d038b4e3323bfe56aa1d0eabe7ae
C#
protected virtual Task<(bool Success, Object DataRec)> OnCustomFunctionAAsync(
	RecroTrack tracking,
	Object dataRec,
	RecroGridCustomFunctionEventArgs args,
	RGUIMessages messages
)

Parameters

tracking  RecroTrack
The tracking.
dataRec  Object
The data record.
args  RecroGridCustomFunctionEventArgs
The RecroGridCustomFunctionEventArgs instance containing the event data.
messages  RGUIMessages
The messages to be sent to the client.

Return Value

TaskValueTupleBoolean, Object
true if the execution is successful, otherwise false.

See Also