Table of Contents

Class BuildingIndexShapeFileFeatureSourceEventArgs

Namespace
ThinkGeo.Core
Assembly
ThinkGeo.Core.dll

This class represents the parameters passed in through the BuildingIndex event in ShapeFileFeatureSource class.

public class BuildingIndexShapeFileFeatureSourceEventArgs : EventArgs
Inheritance
BuildingIndexShapeFileFeatureSourceEventArgs
Inherited Members

Remarks

None

Constructors

BuildingIndexShapeFileFeatureSourceEventArgs(long, long, Feature, DateTime, string)

public BuildingIndexShapeFileFeatureSourceEventArgs(long recordCount, long currentRecordIndex, Feature currentFeature, DateTime startProcessTime, string shapePathFilename)

Parameters

recordCount long
currentRecordIndex long
currentFeature Feature
startProcessTime DateTime
shapePathFilename string

Properties

Cancel

Gets or sets to see if we need to cancel the building index of current record.

public bool Cancel { get; set; }

Property Value

bool

CurrentFeature

Gets the current feature for building rTree index.

public Feature CurrentFeature { get; }

Property Value

Feature

CurrentRecordIndex

Gets the current record index for building rTree index.

public long CurrentRecordIndex { get; }

Property Value

long

RecordCount

Gets the total record count to build rTree index.

public long RecordCount { get; }

Property Value

long

ShapePathFilename

public string ShapePathFilename { get; }

Property Value

string

StartProcessTime

Gets the starting process time for building the index.

public DateTime StartProcessTime { get; }

Property Value

DateTime