To create a GetRefObj object

Build 1501 on 14/Nov/2017  This topic last edited on: 22/Mar/2016, at 17:08

To create a GetRefObj object:

  If Ted.HasActiveArticle Then

    Dim objArticle = Ted.GetActiveArticle

    Dim idx = objArticle.GetCurTxtIdx

    If idx >= 0 Then

      If objArticle.HasRefObj(idx) Then

        Dim objObj = objArticle.GetRefObj(idx)

         MsgBox(objObj.id) 'img id

      End If

    End If

  End If