标签: c# excel com-interop
在我的应用程序中,客户端需要删除单元格中文本的某些部分,并且某些部分不应该被删除。
有没有办法在C#com Interop中执行此操作?
答案 0 :(得分:1)
Range.Characters可以访问单元格中的各个字符,包括其格式(Font属性)。
Range.Characters
Font
请参阅in excel VBA, how to retrieve the formats of text within a cell。