HtmlTableLoadOption.TableIndex

HtmlTableLoadOption.TableIndex property

Get or set the index of table to import from html.

public int TableIndex { get; set; }

Examples

using System;
using Aspose.Cells;

namespace AsposeCellsExamples
{
    public class HtmlTableLoadOptionPropertyTableIndexDemo
    {
        public static void Run()
        {
            // Create a new Workbook
            Workbook workbook = new Workbook();

            // Create HTML load options
            HtmlLoadOptions loadOptions = new HtmlLoadOptions();

            // Configure table load option with TableIndex = 0 (first table)
            HtmlTableLoadOption tableLoadOption = new HtmlTableLoadOption
            {
                TableIndex = 0,
                TableToListObject = true
            };

            // Add the table load option
            loadOptions.TableLoadOptions.Add(tableLoadOption);

            // Load HTML file (replace with actual path)
            workbook = new Workbook("input.html", loadOptions);

            // Save as Excel file
            workbook.Save("output.xlsx");
        }
    }
}

See Also