private static void AddAppDescription(Document doc, AppDescShadow appDescShadow, String label)
        {
            Microsoft.Office.Interop.Word.Table appDescTable = null;
            if (label.Contains("VUI"))
            {
                appDescTable = doc.Tables[Templates.AppDescription];
                String tableText = appDescShadow.GetDescriptionText();

               if ((tableText == null) || (tableText == "")) {
                    tableText = "Please go back to PathMaker and enter a brief description about your application.";
               }
               appDescTable.Cell(2, 1).Range.Text = tableText;

               //Selection content = doc.Application.Selection;
            }
        }