Class CKCellRef
Represents a reference to a cell or group of cells within a Word table.
Inherited Members
Namespace: CoverageKiller2.DOM.Tables
Assembly: CoverageKiller2.dll
Syntax
public class CKCellRef : ICellRef<CKCell>
Remarks
Version: CK2.00.01.0021
Constructors
CKCellRef(int, int, RangeSnapshot, CKTable, IDOMObject)
Initializes a new instance of the CKCellRef class with an optional snapshot.
Declaration
public CKCellRef(int rowIndex, int colIndex, RangeSnapshot snapshot, CKTable table, IDOMObject parent)
Parameters
Type | Name | Description |
---|---|---|
int | rowIndex | The one-based row index. |
int | colIndex | The one-based column index. |
RangeSnapshot | snapshot | The snapshot of the original Word range, or null if not captured. |
CKTable | table | |
IDOMObject | parent | The owning DOM object (table or collection). |
CKCellRef(int, int, CKTable, IDOMObject)
Declaration
public CKCellRef(int rowIndex, int colIndex, CKTable table, IDOMObject parent)
Parameters
Type | Name | Description |
---|---|---|
int | rowIndex | |
int | colIndex | |
CKTable | table | |
IDOMObject | parent |
Properties
ColumnIndex
Gets the one-based Word column index of the referenced cell.
Declaration
public int ColumnIndex { get; }
Property Value
Type | Description |
---|---|
int |
Parent
Declaration
public IDOMObject Parent { get; }
Property Value
Type | Description |
---|---|
IDOMObject |
RowIndex
Gets the one-based Word row index of the referenced cell.
Declaration
public int RowIndex { get; }
Property Value
Type | Description |
---|---|
int |
Snapshot
Gets the snapshot of the original cell range, if captured.
Declaration
public RangeSnapshot Snapshot { get; }
Property Value
Type | Description |
---|---|
RangeSnapshot |
Table
Declaration
public CKTable Table { get; }
Property Value
Type | Description |
---|---|
CKTable |