Dim row = DirectCast(input.parentElement.parentElement.parentElement, mshtml.IHTMLTableRow)
Dim cell = DirectCast(row.cells.item(5), mshtml.htmltabledatacellelement)
Dim ctr = Val(cell.innertext)
如果我不在directCast
第二行使用,则返回类型确实是mshtml.htmltabledatacellelement
. 如果我悬停,这就是我看到的。但是,没有这种类型。
那我也应该施放什么?
我也想得到InnerText
那个东西的价值,不管它是什么。
那我也应该投什么?我怎么知道?