メインコンテンツまでスキップ
バージョン: 次へ

VP FLUSH COMMANDS

履歴
リリース内容
20 R9Support of callback parameter

VP FLUSH COMMANDS ( vpAreaName : Text {; callback : 4D.Function} )

引数説明
vpAreaNameText->4D View Pro フォームオブジェクト名
callback4D.Function->(Optional) A callback function executed after all VP commands and 4D custom functions have been executed

説明

VP FLUSH COMMANDS コマンドは、 保存されているコマンドをただちに実行し、コマンドバッファをクリアします。

vpAreaName には、4D View Pro エリアの名前を渡します。 存在しない名前を渡した場合、エラーが返されます。

パフォーマンス向上と、送信リクエスト数を抑えるため、デベロッパーが呼び出した 4D View Pro コマンドはコマンドバッファに保存されます。 VP FLUSH COMMANDS は呼び出されると、メソッド終了時にコマンドをバッチとして実行し、コマンドバッファのコンテンツを空にします。

If a callback function is provided, it is only executed after all stored commands and 4D custom functions have finished processing. This ensures that any follow-up actions, such as saving or printing the document, are only performed after all calculations have completed.

The following parameters can be used in the callback function:

引数説明
param1Text4D View Pro エリアのオブジェクト名
param2Objectメソッドから返されるステータスメッセージを格納したオブジェクト
.successBooleanTrue if import was successful, False otherwise
.errorCodeIntegerエラーコード
.errorMessageTextエラーメッセージ

例題 1

You want to execute commands and empty the command buffer:

// Set text values in specific cells
VP SET TEXT VALUE(VP Cell("ViewProArea1";10;1);"INVOICE")
VP SET TEXT VALUE(VP Cell("ViewProArea1";10;2);"Invoice date: ")
VP SET TEXT VALUE(VP Cell("ViewProArea1";10;3);"Due date: ")

// Execute stored commands, clear the buffer, and trigger the callback
VP FLUSH COMMANDS("ViewProArea1")

例題 2

You want to execute commands, empty the command buffer and trigger a callback function:

// Set text values in specific cells
VP SET FORMULA(VP Cell("ViewProArea1";10;1);"MyCustomFunction()")
VP SET FORMULA(VP Cell("ViewProArea1";10;2);"MyCustomFunction2()")
VP SET FORMULA(VP Cell("ViewProArea1";10;3);"MyCustomFunction3()")

// Execute stored commands, clear the buffer, and trigger the callback
VP FLUSH COMMANDS("ViewProArea1"; Formula(onFlushComplete))
// Method 'onFlushComplete'
#DECLARE($name : Text; $status : Object)
ALERT("All commands and custom functions have finished executing. You can now print or save the document.")