AutoCAD のメソッドの呼び出しによって返された文字列のバリアント配列の処理に問題があります。返された配列は正しいように見えますが、配列内の要素を参照しようとしたり、For Each ステートメントに配列の名前を含めたりしようとすると、型の不一致エラーが発生します
コードは次のとおりです。
Dim acApp 'As AutoCAD.AcadApplication
Dim acDoc 'As AutoCAD.AcadDocument
Dim acLyt 'As AutoCAD.AcadLayout
'Get the AutoCAD application...
On Error Resume Next
Set acApp = GetObject(, "AutoCAD.Application")
On Error GoTo 0
If (acApp Is Nothing) Then
Set acApp = CreateObject("AutoCAD.Application")
End If
'Is there a drawing open? If not we'll need to open a new drawing...
If acApp.Documents.Count > 0 Then
Set acDoc = acApp.ActiveDocument
Else
Set acDoc = acApp.Documents.Add
End If
'Get a reference to the Model Space layout (always first)...
Set acLyt = acDoc.Layouts(0)
'Get the list of canonical media names ("A4", "A3" etc) for the plot device for this layout...
'The AutoCAD documentation says that this method returns a variant, which is an array of strings,
'which seems to be what is actually returned.'
'However, I can't reference the array elements without producing a "Type Mismatch" error.
Names = acLyt.GetCanonicalMediaNames()
WScript.Echo VarType(Names) 'This line runs ok, and returns 8200, which is 8192 for Variant Array, + 8 for String.
WScript.Echo Names(0) 'This line generates the error...
私は困惑しているので、助けていただければ幸いです。
ポール