从Object / Class中检索字符串值?

时间:2013-11-18 19:47:22

标签: vb.net string aspose

Dim tc As Cells = newWorksheet.Cells
Dim tccell As Cell
tccell = tc.Find("PT9", Nothing, findOptions)

注意:上面声明为“type Cell”的“tccell”对象包含我想要检索的字符串“J1”。 检查“tccell”时使用VS2010,它包含以下内容: {Aspose.Cells.cell [J1; ValueType:IsString;价值:ABCD]}

如何从“tccell”中提取值“J1”?

如果我尝试显示tccell: MsgBox(tccell) - >参数'Prompt'无法转换为'String'类型。

如何使用上面显示的查找方法的结果?

由于

1 个答案:

答案 0 :(得分:0)

Cell类具有RowColumn属性。如果您希望这些属性采用字母数字格式,请使用CellsHelper方法之一来获取该属性:

string cellname = CellsHelper.CellIndexToName(row, col)

您可能还会发现单元格的字母数字位置已经位于其Name属性中。