New Row

Instead, create a WHO-Method which can be called from several places.

A new row may be inserted by:

  • pressing F2

  • rMM insert

  • from menu

The β€žNew” action will trigger the following OnNew() Method

For creating a new row with every option, the code will be written into OnNew().

public override void OnNew()
{
    base.OnNew();
    
    NewKopf();
    FocusFirstEditableField();
}

Last updated