"exportLayerIndexFile"

Exports a layer index file that contains all the information of a layer.

Synopsis

void exportLayerIndexFile(string strPath, string strLayer);

Parameters

Parameter Description
strPath The path the layer index file should be saved to.
strLayer The layer that should be exported.

Description

Exports a layer index file that contains all the information of a layer.

Example

Exports a layer index file of the layer "COUNTRY".

main()
{
  GisViewer_ewo1.exportLayerIndexFile("D:/", "COUNTRY");
}

Assignment

GIS Viewer