object rng = Type.Missing;
  string strInfo = "职工基本信息表" + "(" + MyDS_Grid.Tables[0].Rows[i][1].ToString() + ")";
  start = 0;
  end = 0;
  wordDoc.Range(ref start, ref end).InsertBefore(strInfo);    //插入文本
  wordDoc.Range(ref start, ref end).Font.Name = "Verdana";    //设置字体
  wordDoc.Range(ref start, ref end).Font.Size = 20;   //设置字体大小
  wordDoc.Range(ref start, ref end).ParagraphFormat.Alignment=Word.WdParagraphAlignment.wdAlignParagraphCenter; //设置字体局中
                    //                start = strInfo.Length;
                end = strInfo.Length;
                wordDoc.Range(ref start, ref end).InsertParagraphAfter();//插入回车                object missingValue = Type.Missing;
                object location = strInfo.Length; //如果location超过已有字符的长度将会出错。一定要比"明细表"串多一个字符
                Word.Range rng2 = wordDoc.Range(ref location, ref location);                wordDoc.Tables.Add(rng2, 14, 6, ref missingValue, ref missingValue);
          //这里开始出错啊????????????????
                wordDoc.Tables.Item(1).Rows.HeightRule = Word.WdRowHeightRule.wdRowHeightAtLeast;
                wordDoc.Tables.Item(1).Rows.Height = wordApp.CentimetersToPoints(float.Parse("0.8"));
                wordDoc.Tables.Item(1).Range.Font.Size = 10;
                wordDoc.Tables.Item(1).Range.Font.Name = "宋体";为什么说Microsoft.Office.Interop.Word.Table并不包含"Item"的定义?