Mono.Terminal.Widget.BaseMove C# (CSharp) Method

BaseMove() public method

Move relative to the top of the container

This moves the current cursor position to the specified line and column relative to the start of the container where this widget is located.

The difference between this method and Move is that this method goes to the beginning of the container, while Move goes to the first position that widgets should use.

For example, a Frame usually takes up a couple of characters for padding. This method would position the cursor at the beginning of the frame, while Move would position the cursor within the frame.

public BaseMove ( int line, int col ) : void
line int
col int
return void
        public void BaseMove(int line, int col)
        {
            Container.ContainerBaseMove (line, col);
        }