Gets or Sets whether to map files in memory.

Namespace:  EGIS.ShapeFileLib
Assembly:  EGIS.ShapeFileLib (in EGIS.ShapeFileLib.dll)

Syntax

Visual Basic
Public Shared Property MapFilesInMemory As Boolean
	Get
	Set
C#
public static bool MapFilesInMemory { get; set; }
Visual C++
public:
static property bool MapFilesInMemory {
	bool get ();
	void set (bool value);
}
JavaScript
EGIS.ShapeFileLib.ShapeFile.get_mapFilesInMemory = function();
EGIS.ShapeFileLib.ShapeFile.set_mapFilesInMemory = function(value);

Remarks

If MapFilesInMemory is set to true then shapefiles will be mapped in memory using native file mapping. When files are mapped in memory rendering performance will be improved; however they will use more memory.

See Also