Mono.Terminal.Container.GetBase C# (CSharp) Méthode

GetBase() public méthode

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
Résultat void
        public virtual void GetBase(out int row, out int col)
        {
            row = 0;
            col = 0;
        }