|
By patvdv at 26 Feb 2008 - 21:57
|
|
with.object.set.do()
Syntax
void with.object.set.do( function_name, argument1, ... )
Description
This copies the contents of the current record of the main table to the record buffer of that table, saves the record, and executes the specified function. After that the saved record buffer is restored. This enables you to perform actions on the record contents without affecting the values in the table.
You can call this function in any DAL hook. It is the equivalent of the on.main.table() function used in UI scripts.
Arguments
|
function_name
|
The name of the function that must be executed. The function must be of type void.
|
|
argument1, . . .
|
Use these optional arguments to pass one or more arguments to the function.
|
Context
DAL function.
Related topics
|