我用  private ApplicationClass WordApp;  在里面动态增加行   代码如下:
    public void addrow(string LabelId)
    {
        object bkmC = LabelId;//word中的书签名
        object Missing =Type.Missing;
        if (WordApp.ActiveDocument.Books.Exists(LabelId) == true)
        {
            WordApp.ActiveDocument.Books.get_Item(ref bkmC).Select();
            WordApp.ActiveDocument.Books.get_Item(ref bkmC).Application.ActiveDocument.Tables[1].Rows.Add(ref Missing);
        }
    
    }用这个代码现在可以增加行了,但是增加的地方不是我想要的,现在我想要的是 在书签LabelId 下面添加行!求各位大侠 !