"tabChangesFocus"

If the attribute "tabChangesFocus" is set to TRUE, it is not possible to input tabulators.

Synopsis

shape.tabChangesFocus(bool tabM);

Parameter

Parameter Description
shape Name of the object
uLine TRUE = TAB is not accepted as input.

Description

If the attribute "tabChangesFocus" is set to TRUE, it is not possible to input tabulators.

Example

In the following example the user is not allowed to input tabulators.

main(bool enter)
{
  bool tabCF = TRUE;
  this.tabChangesFocus(tabCF);
}

Assignment

TextEdit