Globals

Previous Next

Globals

Globals are Variables or Constants that are available anywhere an application or script.
Mini-Framework uses Globals.

Null

Null is a Global that represents an empty value and is set to "" by default.

By Default Null and MfNull.Null.Value have the same value.

Undefined

Undefined is a Global that represents an undefined value. and is set to "undefined" by default.

MfResourceFolder

Defines the Location of the resource folder used by Mini-Framework. It is not necessary to set or change this Global in most all cases.
See MfEnvironment.ResourceFolder for more information

Globalization

Mini-Framework resources are designed to be global and can be accessed through the MfEnvironment class. To change the default language of the resource file use the super global LanguagePack at the start of your script for other available languages. For example:

LanguagePack := "en-US"

If LanguagePack is excluded then it defaults to en-US.

Currently in this release the only language available is "en-Us" (USA English)

See also: Resource Strings