テーブルと範囲
Contents
[
Hide
]
序章
場合によっては、Microsoft Excel でテーブルを作成し、付属のテーブル機能を使い続けたくないことがあります。代わりに、テーブルのようなものが必要です。書式設定を失わずにテーブル内のデータを保持するには、テーブルを通常のデータ範囲に変換します。 Aspose.Cells は、Microsoft Excel のテーブルおよびリスト オブジェクトのこの機能をサポートしています。
Microsoft エクセルを使う
使用範囲に変換書式設定を失うことなくテーブルを範囲にすばやく変換する機能。 Microsoft Excel 2007/2010:
- テーブル内の任意の場所をクリックして、アクティブ セルがテーブルの列にあることを確認します。
- 上でデザインタブのツールグループ、クリック範囲に変換.
Aspose.Cells を使用
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); | |
// 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クラス。
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); | |
// 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"); |