BuildingIndexDelimitedFeatureSourceEventArgs¶
Namespace: ThinkGeo.Core
This class represents the parameters passed in through the BuildingIndex event in BuildingIndexDelimitedFeatureSourceEventArgs class.
public class BuildingIndexDelimitedFeatureSourceEventArgs : System.EventArgs
Inheritance Object → EventArgs → BuildingIndexDelimitedFeatureSourceEventArgs
Remarks:
None
Properties¶
RecordCount¶
Gets the total record count to build rTree index.
public int RecordCount { get; }
Property Value¶
CurrentRecordIndex¶
Gets the current record index for building rTree index.
public int CurrentRecordIndex { get; }
Property Value¶
CurrentFeature¶
Gets the current feature for building rTree index.
public Feature CurrentFeature { get; }
Property Value¶
StartProcessTime¶
Gets the starting process time for building the index.
public DateTime StartProcessTime { get; }
Property Value¶
DelimitedPathFilename¶
Gets the delimited path file name.
public string DelimitedPathFilename { get; }
Property Value¶
Cancel¶
Gets or sets to see if we need to cancel the building index of current record.
public bool Cancel { get; set; }
Property Value¶
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