User Tools

Site Tools


thinkgeo.mapsuite.core.rebuildingshapefilefeaturesourceeventargs

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revision Previous revision
thinkgeo.mapsuite.core.rebuildingshapefilefeaturesourceeventargs [2015/09/22 08:26]
admin
— (current)
Line 1: Line 1:
-====== ThinkGeo.MapSuite.Core.RebuildingShapeFileFeatureSourceEventArgs ====== 
-This class represents the parameters passed in through the BuildingIndex event in ShapeFileFeatureSource class. 
-===== Inheritance Hierarchy ===== 
-  *System.Object 
-    *System.EventArgs 
-      ***ThinkGeo.MapSuite.Core.RebuildingShapeFileFeatureSourceEventArgs** 
-===== Members Summary ===== 
-==== Public Constructors ==== 
-** {{wiki:​PublicMethod.gif|}} RebuildingShapeFileFeatureSourceEventArgs() ** 
- 
-  * //This is the default constructor of the event args.// 
-== Remarks == 
-  * //If you use this constructor,​ you have to set the properties manually.// 
-== Parameters == 
-<div newline></​div>​ 
-** {{wiki:​PublicMethod.gif|}} RebuildingShapeFileFeatureSourceEventArgs(Int32,​Int32,​Feature,​DateTime,​Boolean) ** 
- 
-  * //This is the constructor of the event args by passing the desired parameters.//​ 
-== Remarks == 
-  * //N/A// 
-== Parameters == 
-  * //​recordCount//​ 
-    * Type:Int32 
-    * Description:​N/​A 
- 
-  * //​currentRecordIndex//​ 
-    * Type:Int32 
-    * Description:​N/​A 
- 
-  * //​currentFeature//​ 
-    * Type:​[[ThinkGeo.MapSuite.Core.Feature|Feature]] 
-    * Description:​N/​A 
- 
-  * //​startProcessTime//​ 
-    * Type:​DateTime 
-    * Description:​N/​A 
- 
-  * //cancel// 
-    * Type:​Boolean 
-    * Description:​N/​A 
- 
-<div newline></​div>​ 
-** {{wiki:​PublicMethod.gif|}} RebuildingShapeFileFeatureSourceEventArgs(Int32,​Int32,​Feature,​DateTime,​Boolean,​String) ** 
- 
-  * //N/A// 
-== Remarks == 
-  * //N/A// 
-== Parameters == 
-  * //​recordCount//​ 
-    * Type:Int32 
-    * Description:​N/​A 
- 
-  * //​currentRecordIndex//​ 
-    * Type:Int32 
-    * Description:​N/​A 
- 
-  * //​currentFeature//​ 
-    * Type:​[[ThinkGeo.MapSuite.Core.Feature|Feature]] 
-    * Description:​N/​A 
- 
-  * //​startProcessTime//​ 
-    * Type:​DateTime 
-    * Description:​N/​A 
- 
-  * //cancel// 
-    * Type:​Boolean 
-    * Description:​N/​A 
- 
-  * //​shapePathFilename//​ 
-    * Type:String 
-    * Description:​N/​A 
- 
-<div newline></​div>​ 
-==== Protected Constructors ==== 
-==== Public Methods ==== 
-** {{wiki:​PublicMethod.gif|}} ToString() ** 
- 
-  * //N/A// 
-== Remarks == 
-  * //N/A// 
- 
-== Return Value == 
-  * Type:String 
-  * Description:​N/​A 
- 
-== Parameters == 
-<div newline></​div>​ 
-** {{wiki:​PublicMethod.gif|}} Equals(Object) ** 
- 
-  * //N/A// 
-== Remarks == 
-  * //N/A// 
- 
-== Return Value == 
-  * Type:​Boolean 
-  * Description:​N/​A 
- 
-== Parameters == 
-  * //obj// 
-    * Type:Object 
-    * Description:​N/​A 
- 
-<div newline></​div>​ 
-** {{wiki:​PublicMethod.gif|}} GetHashCode() ** 
- 
-  * //N/A// 
-== Remarks == 
-  * //N/A// 
- 
-== Return Value == 
-  * Type:Int32 
-  * Description:​N/​A 
- 
-== Parameters == 
-<div newline></​div>​ 
-** {{wiki:​PublicMethod.gif|}} GetType() ** 
- 
-  * //N/A// 
-== Remarks == 
-  * //N/A// 
- 
-== Return Value == 
-  * Type:Type 
-  * Description:​N/​A 
- 
-== Parameters == 
-<div newline></​div>​ 
-==== Protected Methods ==== 
-** {{wiki:​ProtectedMethod.gif|}} Finalize() ** 
- 
-  * //N/A// 
-== Remarks == 
-  * //N/A// 
- 
-== Return Value == 
-  * Type:Void 
-  * Description:​N/​A 
- 
-== Parameters == 
-<div newline></​div>​ 
-** {{wiki:​ProtectedMethod.gif|}} MemberwiseClone() ** 
- 
-  * //N/A// 
-== Remarks == 
-  * //N/A// 
- 
-== Return Value == 
-  * Type:Object 
-  * Description:​N/​A 
- 
-== Parameters == 
-<div newline></​div>​ 
-==== Public Properties ==== 
-** {{wiki:​PublicProperty.gif|}} RecordCount ** 
- 
-Gets the total record count to build rTree index. 
-== Remarks == 
-N/A 
-== Return Value == 
-  * Type:Int32 
- 
-** {{wiki:​PublicProperty.gif|}} CurrentRecordIndex ** 
- 
-Gets the current record index for building rTree index. 
-== Remarks == 
-N/A 
-== Return Value == 
-  * Type:Int32 
- 
-** {{wiki:​PublicProperty.gif|}} CurrentFeature ** 
- 
-Gets the current feature for building rTree index. 
-== Remarks == 
-N/A 
-== Return Value == 
-  * Type:​[[ThinkGeo.MapSuite.Core.Feature|Feature]] 
- 
-** {{wiki:​PublicProperty.gif|}} StartProcessTime ** 
- 
-Gets the starting process time for building the index. 
-== Remarks == 
-N/A 
-== Return Value == 
-  * Type:​DateTime 
- 
-** {{wiki:​PublicProperty.gif|}} Cancel ** 
- 
-Gets or sets to see if we need to cancel the building index of current record. 
-== Remarks == 
-N/A 
-== Return Value == 
-  * Type:​Boolean 
- 
-** {{wiki:​PublicProperty.gif|}} ShapePathFilename ** 
- 
-N/A 
-== Remarks == 
-N/A 
-== Return Value == 
-  * Type:String 
- 
-==== Protected Properties ==== 
-==== Public Events ==== 
  
thinkgeo.mapsuite.core.rebuildingshapefilefeaturesourceeventargs.1442910410.txt.gz ยท Last modified: 2015/09/22 08:26 by admin