Réponse:
Dans ce cas, il y a une erreur dans Excel VBA qui ne peut pas être corrigée de notre côté. C'est pourquoi un nouvel objet RFEM.RfLine (au lieu de RFEM.Line) a été créé pour vous permettre de poursuivre votre travail. Voici un court exemple :
Sub test_RfLine()
Dim iModel As RFEM5.IModel2
Set iModel = GetObject(, "RFEM5.Model")
iModel.GetApplication.LockLicense
On Error GoTo e
Dim iModelData As RFEM5.IModelData2
Set iModelData = iModel.GetModelData
Dim lines() As RFEM5.RfLine
lines = iModelData.GetLines
e: If Err.Number <> 0 Then MsgBox Err.Description, , Err.Source
Set iModelData = Nothing
iModel.GetApplication.UnlockLicense
Set iModel = Nothing
End Sub