Table of Contents

Class BuildingIndexDelimitedFeatureSourceEventArgs

Namespace
ThinkGeo.Core
Assembly
ThinkGeo.Core.dll

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

public class BuildingIndexDelimitedFeatureSourceEventArgs : EventArgs
Inheritance
BuildingIndexDelimitedFeatureSourceEventArgs
Inherited Members

Remarks

None

Constructors

BuildingIndexDelimitedFeatureSourceEventArgs(int, int, Feature, DateTime, string)

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

Parameters

recordCount int
currentRecordIndex int
currentFeature Feature
startProcessTime DateTime
delimitedPathFilename 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 int CurrentRecordIndex { get; }

Property Value

int

DelimitedPathFilename

Gets the delimited path file name.

public string DelimitedPathFilename { get; }

Property Value

string

RecordCount

Gets the total record count to build rTree index.

public int RecordCount { get; }

Property Value

int

StartProcessTime

Gets the starting process time for building the index.

public DateTime StartProcessTime { get; }

Property Value

DateTime