最初に行ごと、次に列ごとにデータを入力
Contents
[
Hide
]
最初に行ごと、次に列ごとにスプレッドシートにデータを入力すると、全体的なパフォーマンスが向上します。
A1、B1、A2、B2 の順序でデータを配置する方が、A1、A2、B1、B2 よりも高速です。ワークシートに多数のセルがあり、2 番目の手順に従う場合、つまり行ごとにデータを入力する場合、このヒントを使用すると、プログラムを大幅に高速化できます。
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 = RunExamples.GetDataDir(System.Reflection.MethodBase.GetCurrentMethod().DeclaringType); | |
// Create a workbook | |
Workbook workbook = new Workbook(); | |
// Populate Data into Cells | |
Cells cells = workbook.Worksheets[0].Cells; | |
cells["A1"].PutValue("data1"); | |
cells["B1"].PutValue("data2"); | |
cells["A2"].PutValue("data3"); | |
cells["B2"].PutValue("data4"); | |
// Save workbook | |
workbook.Save(dataDir + "output_out.xlsx"); |