0

コードでフィールドのグループを作成したいと思います。

create group
set the name of it to "myGroup"

create field
set the name of it to "myField"
set the top of field "myField" to 10
set the width of field "myField" to 100
set the left of  field "myField" to 20

-- add myField to myGroup
-- ??

set the backgroundBehavior of group "myGroup" to true 

質問

  • フィールド「myField」をグループ「myGroup」に追加するにはどうすればよいですか?
  • グループを現在のカードに追加するにはどうすればよいですか?
  • カードにグループ「myGroup」が含まれているかどうかをテストするにはどうすればよいですか?
4

1 に答える 1

5

グループにフィールドを追加するには:

create field "myField" in group "thisGroup"

その後、他のプロパティを通常どおりに設定できます。名前を個別に設定することもできますが、「作成」コマンドに含めると便利です。

既存のグループを現在のカードに追加するには:

place group "myGroup" onto this card

「このカード」の代わりに任意のカード参照を使用できます。新しく作成されたグループは、現在のカードに自動的に配置されることに注意してください。「place」コマンドは、現在のカードの別のカードからグループを表示する場合にのみ役立ちます。

グループが現在のカードにあるかどうかを確認するには:

get there is a group "myGroup" of this card

「このカード」の代わりに任意のカード参照を使用できます。

于 2013-07-21T17:14:07.360 に答える