Interface ILanguage


public interface ILanguage
Represents a user language. Code is defined by ISO-639 (language part) and ISO-3166 (country part), e.g. "en_US".
  • Method Summary

    Modifier and Type
    Method
    Description
    Returns the code of this language.
    Returns the Mendix object corresponding to this language.
    boolean
    Returns whether this language is read from right to left.
  • Method Details

    • getCode

      String getCode()
      Returns the code of this language.
      Returns:
      the language code
    • getMendixObject

      IMendixObject getMendixObject()
      Returns the Mendix object corresponding to this language. The entity of this object is System.Language.
      Returns:
      the Mendix object
    • isRightToLeft

      boolean isRightToLeft()
      Returns whether this language is read from right to left.
      Returns:
      true if the language is right to left; false otherwise