- ベストアンサー
※ ChatGPTを利用し、要約された質問です(原文:VBSでのコレクション)
VBSでのコレクション配列の使用方法
このQ&Aのポイント
- VBSにおけるコレクション配列の使用方法について教えてください。
- VBSでのクラスオブジェクトをコレクション配列に格納する方法を教えてください。
- VBSのコレクション配列にクラスオブジェクトを追加する方法を教えてください。
- みんなの回答 (1)
- 専門家の回答
質問者が選んだベストアンサー
多分コレクションに該当するのは、Dictionaryオブジェクトだと思います。 例えばこんな感じ '----------------------------------------------------------- Class Point Private PointX,PointY Public Property Get X() X=PointX End Property Public Property Let X(v) PointX=v End Property Public Property Get Y() Y=PointY End Property Public Property Let Y(v) PointY=v End Property Public Sub Show() WScript.Echo "("& x & "," & PointY &")" End Sub End Class Dim col Dim mycl Dim i Set col = CreateObject("Scripting.Dictionary") for i=0 to 10 Set mycl = new Point mycl.x=i mycl.y=Int(10 * Rnd) col.Add i, mycl next for i=0 to 10 col.Item(i).Show() next
お礼
ありがとうございました。 うまくいきました。