Class OdfTableStructuralChangeInfo
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
changeIdstringThe change identifier (
table:id). / 修訂識別碼(table:id)。kindOdfTableStructuralChangeKindThe kind of structural change. / 結構修訂種類。
structuralTypestringThe structural type (
row,column, ortable). / 結構類型(row、column或table)。positionintThe zero-based start position. / 起始位置(以 0 為基準)。
countintThe number of affected rows/columns. / 影響數量。
authorstringThe author. / 作者。
changedAtDateTimeThe UTC time of the change. / 修訂時間(UTC)。
acceptanceStatestringThe acceptance state (
pending,accepted, orrejected). / 接受狀態(pending、accepted或rejected)。
Properties
AcceptanceState
Gets the acceptance state. 取得接受狀態。
public string AcceptanceState { get; }
Property Value
Author
Gets the author who made the structural table change. 取得作者。
public string Author { get; }
Property Value
ChangeId
Gets the change identifier. 取得修訂識別碼。
public string ChangeId { get; }
Property Value
ChangedAt
Gets the UTC time of the change. 取得修訂時間(UTC)。
public DateTime ChangedAt { get; }
Property Value
Count
Gets the number of affected rows/columns. 取得影響數量。
public int Count { get; }
Property Value
Kind
Gets the kind of structural change. 取得結構修訂種類。
public OdfTableStructuralChangeKind Kind { get; }
Property Value
Position
Gets the start position. 取得起始位置。
public int Position { get; }
Property Value
StructuralType
Gets the structural type. 取得結構類型。
public string StructuralType { get; }