Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我使用 C# 创建了一个包含表格的 word 文档。现在我想用红色填充此表中的一个单元格。在网上搜索时,我发现我可以使用着色对象来做到这一点。但我不知道如何使用它的任何细节。
我尝试使用类似的东西:
doc.Tables[whichTable].Cell(1,4).Range.Shading.BackgroundPatternColor
但是我怎样才能使用它来设置颜色???
如果您查看此参考页面,您将看到列出的 WdColor 常量。这些是文字可用的颜色,要查看更多关于它们的信息,请参阅此处的枚举列表。
您选择表格单元格的代码对我来说是正确的,因此您只需将 BackgroundPatternColor 设置为 WdColors 之一。