Skip to content

BuildingIndexDelimitedFeatureSourceEventArgs

Namespace: ThinkGeo.Core

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

public class BuildingIndexDelimitedFeatureSourceEventArgs : System.EventArgs

Inheritance ObjectEventArgsBuildingIndexDelimitedFeatureSourceEventArgs

Remarks:

None

Properties

RecordCount

Gets the total record count to build rTree index.

public int RecordCount { get; }

Property Value

Int32

CurrentRecordIndex

Gets the current record index for building rTree index.

public int CurrentRecordIndex { get; }

Property Value

Int32

CurrentFeature

Gets the current feature for building rTree index.

public Feature CurrentFeature { get; }

Property Value

Feature

StartProcessTime

Gets the starting process time for building the index.

public DateTime StartProcessTime { get; }

Property Value

DateTime

DelimitedPathFilename

Gets the delimited path file name.

public string DelimitedPathFilename { get; }

Property Value

String

Cancel

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

public bool Cancel { get; set; }

Property Value

Boolean

Constructors

BuildingIndexDelimitedFeatureSourceEventArgs(Int32, Int32, Feature, DateTime, String)

public BuildingIndexDelimitedFeatureSourceEventArgs(int recordCount, int currentRecordIndex, Feature currentFeature, DateTime startProcessTime, string delimitedPathFilename)

Parameters

recordCount Int32

currentRecordIndex Int32

currentFeature Feature

startProcessTime DateTime

delimitedPathFilename String