GeneratingGridFeatureSourceEventArgs¶
Namespace: ThinkGeo.Core
public class GeneratingGridFeatureSourceEventArgs : System.EventArgs
Inheritance Object → EventArgs → GeneratingGridFeatureSourceEventArgs
Properties¶
GridPathFilename¶
Gets or sets the grid path filename.
public string GridPathFilename { get; set; }
Property Value¶
The grid path filename.
IsCanceled¶
Gets or sets a value indicating whether this instance is canceled.
public bool IsCanceled { get; set; }
Property Value¶
Boolean
true if this instance is canceled; otherwise, false.
StartProcessTime¶
Gets or sets the start process time.
public DateTime StartProcessTime { get; set; }
Property Value¶
The start process time.
GridIndex¶
Gets or sets the index of the grid.
public int GridIndex { get; set; }
Property Value¶
The index of the grid.
GridCount¶
Gets or sets the grid count.
public int GridCount { get; set; }
Property Value¶
The grid count.
Constructors¶
GeneratingGridFeatureSourceEventArgs()¶
Initializes a new instance of the GeneratingGridFeatureSourceEventArgs class.
public GeneratingGridFeatureSourceEventArgs()
GeneratingGridFeatureSourceEventArgs(Int32, Int32, DateTime, Boolean)¶
Initializes a new instance of the GeneratingGridFeatureSourceEventArgs class.
public GeneratingGridFeatureSourceEventArgs(int gridCount, int gridIndex, DateTime startProcessTime, bool isCanceled)
Parameters¶
gridCount Int32
The grid count.
gridIndex Int32
Index of the grid.
startProcessTime DateTime
The start process time.
isCanceled Boolean
if set to true [is canceled].
GeneratingGridFeatureSourceEventArgs(Int32, Int32, DateTime, Boolean, String)¶
Initializes a new instance of the GeneratingGridFeatureSourceEventArgs class.
public GeneratingGridFeatureSourceEventArgs(int gridCount, int gridIndex, DateTime startProcessTime, bool isCanceled, string gridPathFilename)
Parameters¶
gridCount Int32
The grid count.
gridIndex Int32
Index of the grid.
startProcessTime DateTime
The start process time.
isCanceled Boolean
if set to true [is canceled].
gridPathFilename String
The grid path filename.