Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
検証を使用して動的フレックスフォームコンポーネントを作成する方法は?? 動的VOクラスを作成することは可能ですか?
動的VOクラスを作成するごとに、dynamic classプロパティを追加または削除できるActionScriptでを定義できます。
dynamic class
public dynamic class EntityVO { public function EntityVO() { } }
メンバーを追加できます:
var entityVo:EntityVO = new EntityVO(); entityVo.property1 = "New property";
または削除:
delete entityVo.property1;