Table of Contents

Class OdfTableStructuralChangeInfo

Namespace
OdfKit.Text
Assembly
OdfKit.dll

Represents summary information for a table structural change in an ODT document. 表示 ODT 文件中一筆表格結構修訂的摘要資訊。

public sealed class OdfTableStructuralChangeInfo
Inheritance
OdfTableStructuralChangeInfo
Inherited Members

Constructors

OdfTableStructuralChangeInfo(string, OdfTableStructuralChangeKind, string, int, int, string, DateTime, string)

Represents summary information for a table structural change in an ODT document. 表示 ODT 文件中一筆表格結構修訂的摘要資訊。

public OdfTableStructuralChangeInfo(string changeId, OdfTableStructuralChangeKind kind, string structuralType, int position, int count, string author, DateTime changedAt, string acceptanceState)

Parameters

changeId string

The change identifier (table:id). / 修訂識別碼(table:id)。

kind OdfTableStructuralChangeKind

The kind of structural change. / 結構修訂種類。

structuralType string

The structural type (row, column, or table). / 結構類型(rowcolumntable)。

position int

The zero-based start position. / 起始位置(以 0 為基準)。

count int

The number of affected rows/columns. / 影響數量。

author string

The author. / 作者。

changedAt DateTime

The UTC time of the change. / 修訂時間(UTC)。

acceptanceState string

The acceptance state (pending, accepted, or rejected). / 接受狀態(pendingacceptedrejected)。

Properties

AcceptanceState

Gets the acceptance state. 取得接受狀態。

public string AcceptanceState { get; }

Property Value

string

Author

Gets the author who made the structural table change. 取得作者。

public string Author { get; }

Property Value

string

ChangeId

Gets the change identifier. 取得修訂識別碼。

public string ChangeId { get; }

Property Value

string

ChangedAt

Gets the UTC time of the change. 取得修訂時間(UTC)。

public DateTime ChangedAt { get; }

Property Value

DateTime

Count

Gets the number of affected rows/columns. 取得影響數量。

public int Count { get; }

Property Value

int

Kind

Gets the kind of structural change. 取得結構修訂種類。

public OdfTableStructuralChangeKind Kind { get; }

Property Value

OdfTableStructuralChangeKind

Position

Gets the start position. 取得起始位置。

public int Position { get; }

Property Value

int

StructuralType

Gets the structural type. 取得結構類型。

public string StructuralType { get; }

Property Value

string