LeftCol property

int get LeftCol

Implementation

int
  get LeftCol => _topLeft.X;
set LeftCol (int Value)

Implementation

set LeftCol(int Value)
{
  if(_topLeft.X != Value)
    MoveTopLeft(Value, TopRow);
}