Class GeneratingGridFeatureSourceEventArgs
public class GeneratingGridFeatureSourceEventArgs : EventArgs
- Inheritance
-
GeneratingGridFeatureSourceEventArgs
- Inherited Members
Constructors
GeneratingGridFeatureSourceEventArgs()
Initializes a new instance of the GeneratingGridFeatureSourceEventArgs class.
public GeneratingGridFeatureSourceEventArgs()
- See Also
GeneratingGridFeatureSourceEventArgs(int, int, DateTime, bool)
Initializes a new instance of the GeneratingGridFeatureSourceEventArgs class.
public GeneratingGridFeatureSourceEventArgs(int gridCount, int gridIndex, DateTime startProcessTime, bool isCanceled)
Parameters
gridCountintThe grid count.
gridIndexintIndex of the grid.
startProcessTimeDateTimeThe start process time.
isCanceledboolif set to
true[is canceled].
- See Also
GeneratingGridFeatureSourceEventArgs(int, int, DateTime, bool, string)
Initializes a new instance of the GeneratingGridFeatureSourceEventArgs class.
public GeneratingGridFeatureSourceEventArgs(int gridCount, int gridIndex, DateTime startProcessTime, bool isCanceled, string gridPathFilename)
Parameters
gridCountintThe grid count.
gridIndexintIndex of the grid.
startProcessTimeDateTimeThe start process time.
isCanceledboolif set to
true[is canceled].gridPathFilenamestringThe grid path filename.
- See Also
Properties
GridCount
Gets or sets the grid count.
public int GridCount { get; set; }
Property Value
- int
The grid count.
- See Also
GridIndex
Gets or sets the index of the grid.
public int GridIndex { get; set; }
Property Value
- int
The index of the grid.
- See Also
GridPathFilename
Gets or sets the grid path filename.
public string GridPathFilename { get; set; }
Property Value
- string
The grid path filename.
- See Also
IsCanceled
Gets or sets a value indicating whether this instance is canceled.
public bool IsCanceled { get; set; }
Property Value
- bool
trueif this instance is canceled; otherwise,false.
- See Also
StartProcessTime
Gets or sets the start process time.
public DateTime StartProcessTime { get; set; }
Property Value
- DateTime
The start process time.
- See Also