Skip to content

GeneratingGridFeatureSourceEventArgs

Namespace: ThinkGeo.Core

public class GeneratingGridFeatureSourceEventArgs : System.EventArgs

Inheritance objectEventArgsGeneratingGridFeatureSourceEventArgs

Properties

GridPathFilename

Gets or sets the grid path filename.

public string GridPathFilename { get; set; }

Property Value

string

        The grid path filename.

IsCanceled

Gets or sets a value indicating whether this instance is canceled.

public bool IsCanceled { get; set; }

Property Value

bool
true if this instance is canceled; otherwise, false.

StartProcessTime

Gets or sets the start process time.

public DateTime StartProcessTime { get; set; }

Property Value

DateTime

        The start process time.

GridIndex

Gets or sets the index of the grid.

public int GridIndex { get; set; }

Property Value

int

        The index of the grid.

GridCount

Gets or sets the grid count.

public int GridCount { get; set; }

Property Value

int

        The grid count.

Constructors

GeneratingGridFeatureSourceEventArgs()

Initializes a new instance of the GeneratingGridFeatureSourceEventArgs class.

public GeneratingGridFeatureSourceEventArgs()

GeneratingGridFeatureSourceEventArgs(int, int, DateTime, bool)

Initializes a new instance of the GeneratingGridFeatureSourceEventArgs class.

public GeneratingGridFeatureSourceEventArgs(int gridCount, int gridIndex, DateTime startProcessTime, bool isCanceled)

Parameters

gridCount int
The grid count.

gridIndex int
Index of the grid.

startProcessTime DateTime
The start process time.

isCanceled bool
if set to true [is canceled].

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

gridCount int
The grid count.

gridIndex int
Index of the grid.

startProcessTime DateTime
The start process time.

isCanceled bool
if set to true [is canceled].

gridPathFilename string
The grid path filename.