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;
ソースと詳細情報