Mono.Terminal.Container.GetBase C# (CSharp) Метод

GetBase() публичный Метод

Returns the base position for child widgets to paint on.
This method is typically overwritten by containers that want to have some padding (like Frames or Dialogs).
public GetBase ( int &row, int &col ) : void
row int
col int
Результат void
        public virtual void GetBase(out int row, out int col)
        {
            row = 0;
            col = 0;
        }