Table of Contents

Class ActivePoint

Namespace
ItTiger.TigerCli.Primitives
Assembly
ItTiger.TigerCli.dll
A logical position within a grid: column, row, and character offset inside the cell content.
public sealed class ActivePoint
Inheritance
ActivePoint
Inherited Members

Constructors

ActivePoint(int, int, int)

A logical position within a grid: column, row, and character offset inside the cell content.
public ActivePoint(int column, int row, int offset)

Parameters

column int
row int
offset int

Properties

Column

Active cell column.
public int Column { get; }

Property Value

int

Offset

Character offset inside the active cell content.
public int Offset { get; }

Property Value

int

Row

Active cell row.
public int Row { get; }

Property Value

int