Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 5 Current »

Beschreibung

Mit 'switch-case' können verschiedene cases (Varianten) ausgeführt werden, je nachdem, wie der Inhalt der Expression aussieht. (Default ist optional).

Syntax

Beispiel:

switch (Lo_Result.o_Result.ResultText)
{
  case "TTA":
  {
  GetValue("ABUG4","HKB5",0);
  }
  case "TTS":
  {
  GetValue("ABUG4","HKB7",0);
  }
  default:
  {
  GetValue("ABUG4","FACH4",0);
  }
} /* switch */
  • No labels