viñetas varios una tipos sirven que para numerada numeracion niveles lista las insertar hacer ejemplos con como c# ms-word

c# - varios - Lista numerada en Microsoft Word



tipos de viñetas en word (1)

Estoy usando Interop.Microsoft.Office.Interop.Word.dll para construir dinámicamente un documento de Word en C #.

¿Alguien tiene un ejemplo de código para crear una lista numerada?


Intente esto ... asume que tiene una referencia a Word10 (puede usar otras versiones, tendrá que cambiar las constantes). No olvide using Microsoft.Office.Interop.Word;

// setup object missing = System.Reflection.Missing.Value; ApplicationClass app = new ApplicationClass(); Document doc = app.Documents.Add(ref missing, ref missing, ref missing, ref missing); app.Visible = true; // whatever is selected will be turned into a numbered list. object n = 1; ListTemplate template = app.ListGalleries[WdListGalleryType.wdNumberGallery].ListTemplates.get_Item(ref n); ListLevel level = template.ListLevels[1]; level.NumberFormat = "%1."; level.TrailingCharacter = WdTrailingCharacter.wdTrailingTab; level.NumberStyle = WdListNumberStyle.wdListNumberStyleArabic; level.NumberPosition = app.InchesToPoints(0.25f); level.Alignment = WdListLevelAlignment.wdListLevelAlignLeft; level.TextPosition = app.InchesToPoints(0.5f); level.TabPosition = (float)WdConstants.wdUndefined; level.ResetOnHigher = 0; level.StartAt = 1; level.Font.Bold = (int)WdConstants.wdUndefined; level.Font.Italic = (int)WdConstants.wdUndefined; level.Font.StrikeThrough = (int)WdConstants.wdUndefined; level.Font.Subscript = (int)WdConstants.wdUndefined; level.Font.Superscript = (int)WdConstants.wdUndefined; level.Font.Shadow = (int)WdConstants.wdUndefined; level.Font.Outline = (int)WdConstants.wdUndefined; level.Font.Emboss = (int)WdConstants.wdUndefined; level.Font.Engrave = (int)WdConstants.wdUndefined; level.Font.AllCaps = (int)WdConstants.wdUndefined; level.Font.Hidden = (int)WdConstants.wdUndefined; level.Font.Underline = WdUnderline.wdUnderlineNone; level.Font.Color = WdColor.wdColorAutomatic; level.Font.Size = (int)WdConstants.wdUndefined; level.Font.Animation = WdAnimation.wdAnimationNone; level.Font.DoubleStrikeThrough = (int)WdConstants.wdUndefined; level.LinkedStyle = ""; template.Name = ""; object bContinuePrevList = false; object applyTo = WdListApplyTo.wdListApplyToWholeList; object defBehavior = WdDefaultListBehavior.wdWord10ListBehavior; app.Selection.Range.ListFormat.ApplyListTemplateWithLevel( template, ref bContinuePrevList, ref applyTo, ref defBehavior, ref missing);

editar: formateo.