Class HTMLTableCellElement

Class HTMLTableCellElement

Namespace: Aspose.Html
Assembly: Aspose.HTML.dll (25.2.0)

The object used to represent the TH and TD elements. See the TD element definition in HTML 4.01.

See also the Document object Model (DOM) Level 2 HTML Specification.

[ComVisible(true)]
[DOMObject]
[DOMName("HTMLTableCellElement")]
public class HTMLTableCellElement : HTMLElement, INotifyPropertyChanged, IEventTarget, IDisposable, IXPathNSResolver, IParentNode, IElementTraversal, IChildNode, IElementCSSInlineStyle, IGlobalEventHandlers

Inheritance

objectDOMObjectEventTargetNodeElementHTMLElementHTMLTableCellElement

Implements

INotifyPropertyChanged, IEventTarget, IDisposable, IXPathNSResolver, IParentNode, IElementTraversal, IChildNode, IElementCSSInlineStyle, IGlobalEventHandlers

Inherited Members

HTMLElement.Id, HTMLElement.Title, HTMLElement.Lang, HTMLElement.Dir, HTMLElement.ClassName, HTMLElement.Style, HTMLElement.OnAbort, HTMLElement.OnBlur, HTMLElement.OnCancel, HTMLElement.OnCanplay, HTMLElement.OnCanPlayThrough, HTMLElement.OnChange, HTMLElement.OnClick, HTMLElement.OnCueChange, HTMLElement.OnDblClick, HTMLElement.OnDurationChange, HTMLElement.OnEmptied, HTMLElement.OnEnded, HTMLElement.OnError, HTMLElement.OnFocus, HTMLElement.OnInput, HTMLElement.OnInvalid, HTMLElement.OnKeyDown, HTMLElement.OnKeyPress, HTMLElement.OnKeyUp, HTMLElement.OnLoad, HTMLElement.OnLoadedData, HTMLElement.OnLoadedMetadata, HTMLElement.OnLoadStart, HTMLElement.OnMouseDown, HTMLElement.OnMouseEnter, HTMLElement.OnMouseLeave, HTMLElement.OnMouseMove, HTMLElement.OnMouseOut, HTMLElement.OnMouseOver, HTMLElement.OnMouseUp, HTMLElement.OnMouseWheel, HTMLElement.OnPause, HTMLElement.OnPlay, HTMLElement.OnPlaying, HTMLElement.OnProgress, HTMLElement.OnRateChange, HTMLElement.OnReset, HTMLElement.OnResize, HTMLElement.OnScroll, HTMLElement.OnSeeked, HTMLElement.OnSeeking, HTMLElement.OnSelect, HTMLElement.OnShow, HTMLElement.OnStalled, HTMLElement.OnSubmit, HTMLElement.OnSuspend, HTMLElement.OnTimeUpdate, HTMLElement.OnToggle, HTMLElement.OnVolumeChange, HTMLElement.OnWaiting, Element.GetAttributeNames(), Element.HasAttributes(), Element.GetAttribute(string), Element.GetAttributeNS(string, string), Element.SetAttribute(string, string), Element.SetAttributeNS(string, string, string), Element.RemoveAttribute(string), Element.RemoveAttributeNS(string, string), Element.HasAttribute(string), Element.HasAttributeNS(string, string), Element.ToggleAttribute(string), Element.ToggleAttribute(string, bool), Element.GetAttributeNode(string), Element.SetAttributeNode(Attr), Element.RemoveAttributeNode(Attr), Element.GetAttributeNodeNS(string, string), Element.SetAttributeNodeNS(Attr), Element.GetElementsByTagName(string), Element.GetElementsByTagNameNS(string, string), Element.Remove(), Element.QuerySelectorAll(string), Element.QuerySelector(string), Element.AttachShadow(ShadowRootMode), Element.GetElementsByClassName(string), Element.Dispose(bool), Element.ClassList, Element.LocalName, Element.NamespaceURI, Element.Prefix, Element.NodeName, Element.NodeType, Element.TagName, Element.Id, Element.ClassName, Element.TextContent, Element.Attributes, Element.FirstElementChild, Element.LastElementChild, Element.PreviousElementSibling, Element.NextElementSibling, Element.ChildElementCount, Element.Children, Element.InnerHTML, Element.OuterHTML, Element.ShadowRoot, Node.ELEMENT_NODE, Node.ATTRIBUTE_NODE, Node.TEXT_NODE, Node.CDATA_SECTION_NODE, Node.ENTITY_REFERENCE_NODE, Node.ENTITY_NODE, Node.PROCESSING_INSTRUCTION_NODE, Node.COMMENT_NODE, Node.DOCUMENT_NODE, Node.DOCUMENT_TYPE_NODE, Node.DOCUMENT_FRAGMENT_NODE, Node.NOTATION_NODE, Node.HasChildNodes(), Node.Normalize(), Node.CloneNode(), Node.CloneNode(bool), Node.IsEqualNode(Node), Node.IsSameNode(Node), Node.LookupPrefix(string), Node.LookupNamespaceURI(string), Node.IsDefaultNamespace(string), Node.InsertBefore(Node, Node), Node.ReplaceChild(Node, Node), Node.RemoveChild(Node), Node.AppendChild(Node), Node.Dispose(bool), Node.ToString(), Node.NodeType, Node.LocalName, Node.NamespaceURI, Node.Prefix, Node.NodeName, Node.BaseURI, Node.OwnerDocument, Node.ParentNode, Node.ParentElement, Node.ChildNodes, Node.FirstChild, Node.LastChild, Node.PreviousSibling, Node.NextSibling, Node.NodeValue, Node.TextContent, EventTarget.AddEventListener(string, DOMEventHandler, bool), EventTarget.AddEventListener(string, IEventListener), EventTarget.AddEventListener(string, IEventListener, bool), EventTarget.RemoveEventListener(string, DOMEventHandler, bool), EventTarget.RemoveEventListener(string, IEventListener), EventTarget.RemoveEventListener(string, IEventListener, bool), EventTarget.DispatchEvent(Event), EventTarget.Dispose(), EventTarget.Dispose(bool), DOMObject.GetPlatformType(), object.GetType(), object.MemberwiseClone(), object.ToString(), object.Equals(object?), object.Equals(object?, object?), object.ReferenceEquals(object?, object?), object.GetHashCode()

Properties

Abbr

Abbreviation for header cells. See the abbr attribute definition in HTML 4.01.

[DOMName("abbr")]
public string Abbr { get; set; }

Property Value

string

Align

Horizontal alignment of data in cell. See the align attribute definition in HTML 4.01.

[DOMName("align")]
public string Align { get; set; }

Property Value

string

Axis

Names group of related headers. See the axis attribute definition in HTML 4.01.

[DOMName("axis")]
public string Axis { get; set; }

Property Value

string

BgColor

Cell background color. See the bgcolor attribute definition in HTML 4.01. This attribute is deprecated in HTML 4.01.

[DOMName("bgColor")]
public string BgColor { get; set; }

Property Value

string

CellIndex

The index of this cell in the row, starting from 0. This index is in document tree order and not display order.

[DOMName("cellIndex")]
public int CellIndex { get; }

Property Value

int

Ch

Alignment character for cells in a column. See the char attribute definition in HTML 4.01.

[DOMName("ch")]
public string Ch { get; set; }

Property Value

string

ChOff

Offset of alignment character. See the charoff attribute definition in HTML 4.01.

[DOMName("chOff")]
public string ChOff { get; set; }

Property Value

string

ColSpan

Number of columns spanned by cell. See the colspan attribute definition in HTML 4.01.

[DOMName("colSpan")]
public int ColSpan { get; set; }

Property Value

int

Headers

List of id attribute values for header cells. See the headers attribute definition in HTML 4.01.

[DOMName("headers")]
public string Headers { get; set; }

Property Value

string

Height

Cell height. See the height attribute definition in HTML 4.01. This attribute is deprecated in HTML 4.01.

[DOMName("height")]
public string Height { get; set; }

Property Value

string

NoWrap

Suppress word wrapping. See the nowrap attribute definition in HTML 4.01. This attribute is deprecated in HTML 4.01.

[DOMName("noWrap")]
public bool NoWrap { get; set; }

Property Value

bool

RowSpan

Number of rows spanned by cell. See the rowspan attribute definition in HTML 4.01.

[DOMName("rowSpan")]
public int RowSpan { get; set; }

Property Value

int

Scope

Scope covered by header cells. See the scope attribute definition in HTML 4.01.

[DOMName("scope")]
public string Scope { get; set; }

Property Value

string

VAlign

Vertical alignment of data in cell. See the valign attribute definition in HTML 4.01.

[DOMName("vAlign")]
public string VAlign { get; set; }

Property Value

string

Width

Cell width. See the width attribute definition in HTML 4.01. This attribute is deprecated in HTML 4.01.

[DOMName("width")]
public string Width { get; set; }

Property Value

string