- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我的文档有 DOCPROPERTY 字段,我正在尝试更新它们(标题、副标题等)。
Dim title As String = "New Title"
Dim subTitle As String = "New Sub Title"
Dim document = DocumentModel.Load(inputFile)
document.DocumentProperties.BuiltIn(BuiltInDocumentProperty.Title) = title
document.DocumentProperties.Custom("SubTitle") = subTitle
document.Save(outputFile)
但是最终的文档没有显示更新的值,只有在 MS Word 中按 F9 刷新后才能看到它们。如何使用 GemBox.Document 刷新它们?
我还有一些用宏更新的 DOCVARIABLE 字段。我可以使用 GemBox.Document 更新它们吗?
最佳答案
2020 年 2 月 1 日更新:
GemBox.Document 当前最新的错误修复版本引入了对 Field.Update
的 API 支持,因此从现在开始,DOCPROPERTY 和 DOCVARIABLE 字段的更新可以简化如下:
For Each field As Field In document.GetChildElements(True, ElementType.Field)
field.Update()
Next
2017 年 10 月 11 日更新:
GemBox.Document 当前最新的错误修复版本引入了对 DocumentModel.Variables
的 API 支持,因此从现在开始可以更新 DOCVARIABLE 字段,例如使用以下内容:
Dim variables As VariablesDictionary = document.Variables
For Each field As Field In document.GetChildElements(True, ElementType.Field).Cast(Of Field)().Where(Function(f) f.FieldType = FieldType.DocVariable)
Dim instruction As String = field.GetInstructionText()
Dim variableName As String = If(instruction.IndexOf(" "c) < 0, instruction, instruction.Remove(instruction.IndexOf(" "c)))
Dim value As String = Nothing
If variables.TryGetValue(variableName, value) Then
field.ResultInlines.Clear()
field.ResultInlines.Add(New Run(document, value) With {.CharacterFormat = field.CharacterFormat.Clone()})
End If
Next
原文:
保存到 DOCX 文件时,GemBox.Document 不会自动更新 DOCPROPERTY 字段。但是,它们会在保存为 PDF、XPS 或图像格式以及打印时更新。
不过,您可以使用如下内容更新它们:
Dim properties As DocumentProperties = document.DocumentProperties
For Each field As Field In document.GetChildElements(True, ElementType.Field).Cast(Of Field)().Where(Function(f) f.FieldType = FieldType.DocProperty)
Dim instruction As String = field.GetInstructionText()
Dim propertyName As String = If(instruction.IndexOf(" "c) < 0, instruction, instruction.Remove(instruction.IndexOf(" "c)))
Dim value As String = Nothing
Dim customValue As Object = Nothing
Dim buildInProperty As BuiltInDocumentProperty
If properties.Custom.TryGetValue(propertyName, customValue) Then
value = customValue.ToString()
ElseIf [Enum].TryParse(propertyName, buildInProperty) Then
properties.BuiltIn.TryGetValue(buildInProperty, value)
End If
If Not String.IsNullOrEmpty(value) Then
field.ResultInlines.Clear()
field.ResultInlines.Add(New Run(document, value) With {.CharacterFormat = field.CharacterFormat.Clone()})
End If
Next
此外,关于 DOCVARIABLE 字段,这些字段当前无法使用 GemBox.Document 进行更新。
关于vb.net - 使用 GemBox 更新 DOCPROPERTY 字段,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46419594/
我正在使用 C# WebApi 2,存储在未安装办公室的 Azure 服务器上。 我需要创建一个 excel 文件,并且知道 GemBox 电子表格不需要在机器上安装 office。 问题是我需要文件
我正在尝试获取电子表格中最后使用的行的索引。我发现在Excel中可以这样做: int lastUsedRow = worksheet.Cells.SpecialCells(Excel.XlCellTy
我正在尝试使用 GemBox 将 excel 文件导入数据表,但我一直收到此错误: 在 SourceRowIndex:1 和 SourceColumnIndex:1 处提取到 DataTable 时,
我第一次使用 GemBox(3.5 版)并且遇到了一个问题。打开生成的 XLSX 文件时,它总是滚动到工作表的底部。我(或者更确切地说,我的客户)希望它从左上角开始。 有没有办法在保存之前以编程方式设
我们如何使用 GemBox.Document 编写或修改 Word 文档中表单控件的现有值? 我找到了 creating 的示例和 reading ,但我就是找不到用于写作的... 我试过用这个: /
我们正在评估 Gembox 作为 Aspose 的替代品。我想我快瞎了,因为我不能做的一件事就是轻松获取 ExcelCell 的地址(例如“B4”)。 例如,当遍历单元格时,我们可能会遇到一个意想不到
我正在使用 Gembox 尝试将 Excel 数据导入应用程序,但我似乎无法让 ExtractToDataTable 方法正常工作。 异常信息是这样的 "Invalid Data Value when
我正在使用一个名为 Gembox 的外部组件来创建 Excel 报告。 将 C# 中的 DateTime 属性导出到 Excel 时,该值在 Excel 中显示为数字(例如“-693593”)。所有其
根据他们的文档:GemBox.Spreadsheet 可以读写公式,但不能计算公式结果。当您在 MS Excel 中打开 XLS 文件时,将自动计算公式结果。 因此,如果我创建一个包含一些注入(inj
关闭。这个问题不符合Stack Overflow guidelines .它目前不接受答案。 我们不允许提问寻求书籍、工具、软件库等的推荐。您可以编辑问题,以便用事实和引用来回答。 关闭 7 年前。
我现在正在使用 GemBox Spreadsheet 来使用 C# 读取 Excel 文件。在 Excel 文件中,有一个单元格包含引用另一个 Excel 文件的日期值。 在 C# 中,起初,我得到的
我的文档有 DOCPROPERTY 字段,我正在尝试更新它们(标题、副标题等)。 Dim title As String = "New Title" Dim subTitle As String =
我有以下问题:当我尝试加载基于 XML 的 Excel 文件 (.xlsx) 时,即使我将 LoadOption 设置为 XlsxDefault 程序也会抛出错误 Reading error: fil
我想使用 C# 加载 .xls 文件(类型:97-2003 电子表格)。我正在使用 Gembox 库。 当我使用下面的命令时,我遇到了“文件包含损坏的数据。”错误。 ExcelFile ef = Ex
我们知道,在 Gembox Spreadsheet 中,您可以为单元格设置边框(使用 C# 语言),例如: worksheet.Cells[row, 2].Style.Borders.SetBorde
我正在使用 .NET CORE,因为我有一台 Mac,我需要使用 GemBox.Spreadsheet,但它仅适用于 .NET Framework。是否可以做一些事情以便将其与 .NET CORE 一
我目前使用 Gembox.Document 来读取 PDF 文档中的内容。我有一个包含所有内容的类库和一个引用它的自托管 .NET Core 3.1 服务。我使用 PDF 数据查询服务,它以内容进行响
我是一名优秀的程序员,十分优秀!