Show / Hide Table of Contents

Class ExcelHtmlTableReference

A reference to an HTML table in a web query connection.

Inheritance
object
ExcelHtmlTableReference
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: OfficeOpenXml.Data.Connection
Assembly: EPPlus.dll
Syntax
public class ExcelHtmlTableReference

Constructors

ExcelHtmlTableReference()

Represents a missing table (Index = -1).

Declaration
public ExcelHtmlTableReference()

ExcelHtmlTableReference(int)

Represents a table with specified index within the html document.

Declaration
public ExcelHtmlTableReference(int index)
Parameters
Type Name Description
int index

The index

ExcelHtmlTableReference(string)

Represents a table with the specified name in the html document using the "o:WebQueryTableName" attribute.

Declaration
public ExcelHtmlTableReference(string name)
Parameters
Type Name Description
string name

The name.

Properties

Index

The index in order of the tables in the HTML document

Declaration
public int Index { get; set; }
Property Value
Type Description
int

Name

The name of the table, if specified in the HTML source using the "o:WebQueryTableName" attribute.

Declaration
public string Name { get; set; }
Property Value
Type Description
string
In this article
Back to top Generated by DocFX