I have 5 buttons like NumHeading1, NumHeading2, NumHeading3, NumHeading4, NumHeading5 below i have code for buttons.
It is relecting to text heading not for created Numbered heading buttons.
public void NumHeading1(Office.IRibbonControl control)
{
Application app = Globals.ThisAddIn.Application;
Microsoft.Office.Interop.Word.Document doc1 = app.ActiveDocument;
Selection wordSelection = Globals.ThisAddIn.Application.Selection;
ListGallery gallery = wordSelection.Application.ListGalleries[WdListGalleryType.wdOutlineNumberGallery];
ListTemplate numberedTemplate = gallery.ListTemplates[2];
Microsoft.Office.Interop.Word.Style style = doc1.Styles["Heading " + 1];
style.LinkToListTemplate(numberedTemplate, 1);
}
public void NumHeading2(Office.IRibbonControl control)
{
Application app = Globals.ThisAddIn.Application;
Microsoft.Office.Interop.Word.Document doc1 = app.ActiveDocument;
Selection wordSelection = Globals.ThisAddIn.Application.Selection;
ListGallery gallery = wordSelection.Application.ListGalleries[WdListGalleryType.wdOutlineNumberGallery];
ListTemplate numberedTemplate = gallery.ListTemplates[2];
Microsoft.Office.Interop.Word.Style style = doc1.Styles["Heading " + 2];
style.LinkToListTemplate(numberedTemplate, 2);
}
public void NumHeading3(Office.IRibbonControl control)
{
Application app = Globals.ThisAddIn.Application;
Microsoft.Office.Interop.Word.Document doc1 = app.ActiveDocument;
Selection wordSelection = Globals.ThisAddIn.Application.Selection;
ListGallery gallery = wordSelection.Application.ListGalleries[WdListGalleryType.wdOutlineNumberGallery];
ListTemplate numberedTemplate = gallery.ListTemplates[2];
Microsoft.Office.Interop.Word.Style style = doc1.Styles["Heading " + 3];
style.LinkToListTemplate(numberedTemplate, 3);
}
public void NumHeading4(Office.IRibbonControl control)
{
Application app = Globals.ThisAddIn.Application;
Microsoft.Office.Interop.Word.Document doc1 = app.ActiveDocument;
Selection wordSelection = Globals.ThisAddIn.Application.Selection;
ListGallery gallery = wordSelection.Application.ListGalleries[WdListGalleryType.wdOutlineNumberGallery];
ListTemplate numberedTemplate = gallery.ListTemplates[2];
Microsoft.Office.Interop.Word.Style style = doc1.Styles["Heading " + 4];
style.LinkToListTemplate(numberedTemplate, 4);
}
public void NumHeading5(Office.IRibbonControl control)
{
Application app = Globals.ThisAddIn.Application;
Microsoft.Office.Interop.Word.Document doc1 = app.ActiveDocument;
Selection wordSelection = Globals.ThisAddIn.Application.Selection;
ListGallery gallery = wordSelection.Application.ListGalleries[WdListGalleryType.wdOutlineNumberGallery];
ListTemplate numberedTemplate = gallery.ListTemplates[2];
Microsoft.Office.Interop.Word.Style style = doc1.Styles["Heading " + 5];
style.LinkToListTemplate(numberedTemplate, 5);
}