ブロックする >ワークスペース >createVariable

Workspace.createVariable() メソッド

指定の名前、型(オプション)、ID(省略可)を使用して変数を作成します。

署名:

createVariable(name: string, opt_type?: string | null, opt_id?: string | null): VariableModel;

パラメータ

パラメータ 説明
name 文字列 変数の名前。変数やプロシージャ全体で一意である必要があります。
opt_type 文字列 |null (省略可)「int」などの変数の型または「string」です。一意である必要はありません。Field_variable は、型に基づいて変数をフィルタできます。デフォルトは ''特定のタイプです
opt_id 文字列 |null (省略可)変数の一意の ID。デフォルトは UUID です。

戻り値:

VariableModel

新しく作成された変数。