EaxAnalyzer.TopobaseOd

Syntax

TopobaseOd: Object

Description

The TopobaseOd  property contains identifier of express report topobase as a JSON object.

Comments

Use JSON and the setTopobaseOd method to set the property value, and the getTopobaseOd method to get the property value.

The property contains value as a JSON object with the following fields: k - topobase key, i - topobase identifier, n - topobase name, and so on.

Example

Executing the example requires that the HTML page contains the ExpressBox component named expressBox (see Example of Creating the ExpressBox Component). Get information on express report topobase:

var eaxAnalyzer = expressBox.getSource();
// Get information on the topobase
var topobase = eaxAnalyzer.getTopobaseOd();
console.log("Id: " + topobase.i);
console.log("Key: " + topobase.k);
console.log("Name: " + topobase.n);

After executing the example key, identifier and name of the express report topobase are shown in the screen:

Id: OBJ2528
Key: 2528
Name: Russia.tbs

See also:

EaxAnalyzer