getDefaultLCID

getDefaultLCID(): Integer;

The getDefaultLCID method of the Node class returns an integer for the locale ID (LCID) with which the background process for the node was initiated.

In the following example, a presentation client determines the LCID of its application server node to obtain information about the locale.

vars
    lcid: Integer;
    info: LocaleFullInfo;
begin
    create info transient;
    lcid := node.getDefaultLCID;
    currentSchema.getLocaleFullInfo(lcid, info);
    . . .
epilog
    delete info;
end;