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# 我希望文本在单元格中而不是在单元格之外。因为有时文本太长,它会自动转到另一个单元格。我怎样才能在那里做边界?我应该使用Excel.Range.Borders吗?
Excel.Range.Borders
好像您正在寻找在您的单元格中换行的文本
这是执行此操作的一些代码:
sheet.Range["G3"].IsWrapText = true;
来源和更多信息