TextBox をワークシートに追加/挿入する方法
Contents
[
Hide
]
Excel のワークシートにテキスト ボックスを追加する
Excel プログラム (バージョン 07 以降) では、テキスト ボックスを挿入できる場所が 2 つあります。
方法 1:
方法 2:
作成方法
横書きまたは縦書きのテキストを含むテキスト ボックスを作成できます。
- 対応するオプションを選択します (水平または垂直)
- ページを左クリック
- 左ボタンを押したまま、ページ上で距離をドラッグします
- 左ボタンを離す
これで、テキスト ボックスが表示されます。
Aspose.Cells のワークシートにテキスト ボックスを追加
TextBox をワークシートに一括挿入する必要がある場合、手動で挿入する方法は明らかに惨事です。これが気になる場合は、このドキュメントが役立つと思います。Aspose.Cellsコードに一括挿入を簡単に行うための API を提供します。
次のサンプル コードは、テキスト ボックスを作成します。
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// For complete examples and data files, please go to https://github.com/aspose-cells/Aspose.Cells-for-.NET | |
// The path to the documents directory. | |
string dataDir = ""; | |
if (!System.IO.Directory.Exists(dataDir)) | |
{ | |
System.IO.Directory.CreateDirectory(dataDir); | |
} | |
// Open an Excel file. | |
//Workbook workbook = new Workbook(dataDir+ "Book_SourceData.xlsx");//If you want to insert a text box in an existing file, use this code. | |
// Create an object of the Workbook class | |
Workbook workbook = new Workbook(); | |
// Access first worksheet from the collection | |
Worksheet sheet = workbook.Worksheets[0]; | |
// Add the TextBox to the worksheet | |
sheet.TextBoxes.Add(6, 10, 100, 200); | |
//Save.You can check your text box in this way. | |
workbook.Save("result.xlsx", SaveFormat.Xlsx); |
次のようなファイルが得られます結果ファイル.ファイルには、次のように表示されます。