Skip to content

T_Cyjb_Markdown_Syntax_Table

CYJB edited this page Feb 1, 2024 · 1 revision

Table 类

表示 Markdown 的表格。

继承层次

System.Object
  Cyjb.Markdown.Syntax.Node
    Cyjb.Markdown.Syntax.BlockNode
      Cyjb.Markdown.Syntax.Table
Namespace: Cyjb.Markdown.Syntax
Assembly: Cyjb.Markdown (in Cyjb.Markdown.dll) Version: 1.0.2+f073417ab111e884603147b5dc42e8ccc863a984

语法

C#

public sealed class Table : BlockNode, 
	INodeContainer<TableRow>

The Table type exposes the following members.

构造函数

 

名称 说明
公共方法 Table 使用指定的标题行和文本范围初始化 Table 类的新实例。
  Back to Top

属性

 

名称 说明
公共属性 Aligns 获取表格的对齐方式列表。
公共属性 Children 获取行列表。
公共属性 ColumnCount 获取表格的列数。
公共属性 FirstChild 获取标题行。
公共属性 IsHtml 获取节点是否是 HTML 节点。 (继承自 Node。)
公共属性 Kind 获取节点的类型。 (继承自 Node。)
公共属性 LastChild 获取最后一行。
公共属性 LinePositionSpan 获取节点的行列位置范围。 (继承自 Node。)
公共属性 Locator 获取或设置关联到的行定位器。 (继承自 Node。)
公共属性 Next 获取后继兄弟节点。 (继承自 BlockNode。)
公共属性 Parent 获取所属父节点。 (继承自 Node。)
公共属性 Prev 获取前驱兄弟节点。 (继承自 BlockNode。)
公共属性 RowCount 获取表格的行数(包含标题行)。
公共属性 Span 获取或设置节点的文本范围。 (继承自 Node。)
  Back to Top

方法

 

名称 说明
公共方法 Accept(SyntaxVisitor) 应用指定的访问器。 (重写 Node.Accept(SyntaxVisitor).)
公共方法 Accept(TResult)(SyntaxVisitor(TResult)) 应用指定的访问器。 (继承自 Node。)
公共方法 Accept(TResult)(SyntaxVisitor(TResult)) 应用指定的访问器。 (重写 Node.Accept(TResult)(SyntaxVisitor(TResult)).)
公共方法 Equals Determines whether the specified object is equal to the current object. (继承自 Object。)
公共方法 GetHashCode Serves as the default hash function. (继承自 Object。)
公共方法 GetType Gets the Type of the current instance. (继承自 Object。)
公共方法 Remove 将当前节点从父节点中移除。 (继承自 Node。)
公共方法 ToString 返回当前对象的字符串表示形式。 (继承自 Node。)
  Back to Top

Remarks

总是将首行作为标题行,使用标题行的单元格数作为列数。

参见

Reference

Cyjb.Markdown.Syntax 命名空间

Clone this wiki locally