テーブルと範囲

序章

場合によっては、Microsoft Excel でテーブルを作成し、付属のテーブル機能を使い続けたくないことがあります。代わりに、テーブルのようなものが必要です。書式設定を失わずにテーブル内のデータを保持するには、テーブルを通常のデータ範囲に変換します。 Aspose.Cells は、Microsoft Excel のテーブルおよびリスト オブジェクトのこの機能をサポートしています。

Microsoft エクセルを使う

使用範囲に変換書式設定を失うことなくテーブルを範囲にすばやく変換する機能。 Microsoft Excel 2007/2010:

  1. テーブル内の任意の場所をクリックして、アクティブ セルがテーブルの列にあることを確認します。
  2. 上でデザインタブのツールグループ、クリック範囲に変換.

Aspose.Cells を使用

// 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);
// Open an existing file that contains a table/list object in it
Workbook wb = new Workbook(dataDir + "book1.xlsx");
// Convert the first table/list object (from the first worksheet) to normal range
wb.Worksheets[0].ListObjects[0].ConvertToRange();
// Save the file
wb.Save(dataDir + "output.xlsx");

オプションを使用してテーブルを範囲に変換する

Aspose.Cells は、TableToRangeOptionsクラス。のTableToRangeOptionsクラスが提供する最後の行テーブル行の最後のインデックスを設定できるプロパティ。テーブルの書式設定は、指定された行インデックスまで保持され、残りの書式設定は削除されます。

以下のサンプル コードは、TableToRangeOptionsクラス。

// 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);
// Open an existing file that contains a table/list object in it
Workbook workbook = new Workbook(dataDir + "book1.xlsx");
TableToRangeOptions options = new TableToRangeOptions();
options.LastRow = 5;
// Convert the first table/list object (from the first worksheet) to normal range
workbook.Worksheets[0].ListObjects[0].ConvertToRange(options);
// Save the file
workbook.Save(dataDir + "output.xlsx");