Class BuildingIndexDelimitedFeatureSourceEventArgs
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
intcurrentRecordIndex
intcurrentFeature
FeaturestartProcessTime
DateTimedelimitedPathFilename
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
CurrentFeature
Gets the current feature for building rTree index.
public Feature CurrentFeature { get; }
Property Value
CurrentRecordIndex
Gets the current record index for building rTree index.
public int CurrentRecordIndex { get; }
Property Value
DelimitedPathFilename
Gets the delimited path file name.
public string DelimitedPathFilename { get; }
Property Value
RecordCount
Gets the total record count to build rTree index.
public int RecordCount { get; }
Property Value
StartProcessTime
Gets the starting process time for building the index.
public DateTime StartProcessTime { get; }