Spire.Doc 13.8.1 现已发布。该版本支持比较两个列表级别是否一致,以及设置或删除图片项目符号。此外,它还调整了 Word 中与列表相关的部分属性和方法。详情如下。 新功能: 新增“ListLevel.Equals(ListLevel level)”比较两个列表级别是否一致。 // 创建 Document 对象 Document document = new Document(); // 创建列表样式 ListStyle listStyle_1 = document.Styles.Add(ListType.Bulleted, "bulletList"); ListLevelCollection Levels_1 = listStyle_1.ListRef.Levels; ListLevel L0 = Levels_1[0]; ListLevel L1 = Levels_1[1];…