コマンド ライン引数のないユーザー プロシージャ - 2022.1 日本語

Vivado Design Suite ユーザー ガイド: Tcl スクリプト機能の使用 (UG894)

Document ID
UG894
Release Date
2022-06-08
Version
2022.1 日本語

ユーザー プロシージャにコマンド ライン引数がない場合は、メタコメント Argument Usage は空にする必要があります。次に例を示します。

proc ::tclapp::mycompany::template::my_command2 {} {
    # Summary : A one line summary of what this proc does
    # Argument Usage:
    # Return Value: 
    # TCL_OK is returned with result set to a string
    # Categories: xilinxtclstore, template
…
}