User Tools

Site Tools


api:dk11:net:tatukgis.ndk.tgis_layervector.exportlayer_tgis_layervector_tgis_extent_tgis_shapetype_string_boolean

Table of Contents

TGIS_LayerVector.ExportLayer(TGIS_LayerVector, TGIS_Extent, TGIS_ShapeType, string, bool) method

DK11 for .NET | TatukGIS.NDK.TGIS_LayerVector.ExportLayer | Overloads | Constructors | Fields | Methods | Properties | Events

Exports the layer.

Available also on: Delphi | Java | ActiveX | Python.

Syntax

// C#
public void ExportLayer(
  TGIS_LayerVector _layer,
  TGIS_Extent _extent,
  TGIS_ShapeType _type,
  string _scope,
  bool _truncated
);
' VisualBasic
Public Sub ExportLayer(
  ByVal _layer As TGIS_LayerVector,
  ByVal _extent As TGIS_Extent,
  ByVal _type As TGIS_ShapeType,
  ByVal _scope As String,
  ByVal _truncated As Boolean
)
// Oxygene
public
  procedure ExportLayer(
    _layer : TGIS_LayerVector;
    _extent : TGIS_Extent;
    _type : TGIS_ShapeType;
    _scope : String;
    _truncated : Boolean
  );

Parameters

Name Type Description
_layer TGIS_LayerVector layer to be exported to
_extent TGIS_Extent starting extent of layer - can't be zero sized
_type TGIS_ShapeType shape type supported by a layer; if gistypeUnknown is used then export will try to recognize shape on its own;
_scope string
String
SQL query for which shape will be exported
_truncated bool
Boolean
if True, then all shapes will be truncated in _extent; if False, only the shape visible in _extent will be exported ;

Remarks

Remember to assign 'path' property to the layer you want to export to, for proper export of the new layer to a file.
Use this method to export a layer. To do this, choose a layer to export to, and use ExportLayer method with proper params. See also the opposite method, ImportLayer.

Example

Here is a simple procedure to export a layer.

2022/11/16 01:34

Page Tools