我在WORD中插入了一个表格table,然后又在table中的一个单元格中放了一个lable.
我如何在vs2003中找到我在单元格中放的lable??
我的代码:
               Word.Application WordApp = new Word.ApplicationClass();
object oFilePath = System.Windows.Forms.Application.StartupPath + "\\Modlue.doc";
object oReadOnly = false;
object MissValue = System.Type.Missing;
try
{
Word.Document document = WordApp.Documents.Open(ref oFilePath,ref MissValue,
ref oReadOnly,ref MissValue,ref MissValue,ref MissValue,
ref MissValue,ref MissValue,ref MissValue,ref MissValue,
ref MissValue,ref MissValue,ref MissValue,ref MissValue,
ref MissValue,ref MissValue);
document.Activate();
Word.Table table = document.Tables[1];
Word.Cell cell = table.Cell(2,1);
                                     //到了这里,我就不知道该怎么找了??
}
catch(System.Exception ex)
{
throw ex;
}