Table of Contents

Class MeasuredActivePoint

Namespace
ItTiger.TigerCli.Primitives
Assembly
ItTiger.TigerCli.dll
The result of mapping an ActivePoint through the measurement pipeline. Contains the owning cell coordinates and the final position within the measured lines.
public sealed class MeasuredActivePoint
Inheritance
MeasuredActivePoint
Inherited Members

Constructors

MeasuredActivePoint(int, int, int, int)

The result of mapping an ActivePoint through the measurement pipeline. Contains the owning cell coordinates and the final position within the measured lines.
public MeasuredActivePoint(int column, int row, int lineIndex, int offsetInLine)

Parameters

column int
row int
lineIndex int
offsetInLine int

Properties

Column

Column of the owning (anchor) cell.
public int Column { get; }

Property Value

int

LineIndex

Line index within the measured cell's lines.
public int LineIndex { get; }

Property Value

int

OffsetInLine

Character offset within that line.
public int OffsetInLine { get; }

Property Value

int

Row

Row of the owning (anchor) cell.
public int Row { get; }

Property Value

int