Skip to content

Commit 7d1a731

Browse files
committed
Update setup files
1 parent 3f98b51 commit 7d1a731

File tree

2 files changed

+52
-35
lines changed

2 files changed

+52
-35
lines changed

src/InnoSetup/AxInterop.MapWinGIS.XML

Lines changed: 0 additions & 11 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/InnoSetup/Interop.MapWinGIS.XML

Lines changed: 52 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -881,20 +881,21 @@
881881
</member>
882882
<member name="M:MapWinGIS.ISelectionList.AddPixel(System.Int32,System.Int32,System.Int32)">
883883
<summary>
884-
Adds a pixel to list.
884+
Adds a pixel to the list.
885+
Updated in v4.9.5
885886
</summary>
886887
<param name="LayerHandle">The layer handle.</param>
887-
<param name="rasterPixelX">X coordinate of the pixel.</param>
888-
<param name="rasterPixelY">Y coordinate of the pixel.</param>
888+
<param name="Column">The column.</param>
889+
<param name="Row">The row.</param>
889890
</member>
890891
<member name="M:MapWinGIS.ISelectionList.TogglePixel(System.Int32,System.Int32,System.Int32)">
891892
<summary>
892893
Toggles the state of the specified pixel (add it to the list if it is not present there, and removes otherwise).
894+
Updated in v4.9.5
893895
</summary>
894896
<param name="LayerHandle">The layer handle.</param>
895-
<param name="RasterX">X coordinate of the pixel.</param>
896-
<param name="RasterY">Y coordinate of the pixel.</param>
897-
<exception cref="T:System.NotImplementedException"></exception>
897+
<param name="Column">The column.</param>
898+
<param name="Row">The row.</param>
898899
</member>
899900
<member name="M:MapWinGIS.ISelectionList.get_LayerHandle(System.Int32)">
900901
<summary>
@@ -932,6 +933,22 @@
932933
<param name="Index">The index of the item.</param>
933934
<returns>Y coordinate or -1 if the specified item is a shape.</returns>
934935
</member>
936+
<member name="M:MapWinGIS.ISelectionList.get_Row(System.Int32)">
937+
<summary>
938+
Gets the row.
939+
</summary>
940+
<param name="Index">The index of the item.</param>
941+
<returns>Row index or -1 if the specified item is a shape.</returns>
942+
\new495 Added in version 4.9.5
943+
</member>
944+
<member name="M:MapWinGIS.ISelectionList.get_Column(System.Int32)">
945+
<summary>
946+
Gets the column.
947+
</summary>
948+
<param name="Index">The index of the item.</param>
949+
<returns>Column index or -1 if the specified item is a shape.</returns>
950+
\new495 Added in version 4.9.5
951+
</member>
935952
<member name="P:MapWinGIS.ISelectionList.Count">
936953
<summary>
937954
Gets the count.
@@ -4909,7 +4926,7 @@
49094926
<summary>
49104927
Restores the properties of the image object from the serialized string.
49114928
</summary>
4912-
<param name="newVal">The serialized string generated by Image.Serialize() method.</param>
4929+
<param name="NewVal">The serialized string generated by Image.Serialize() method.</param>
49134930
\new48 Added in version 4.8
49144931
</member>
49154932
<member name="M:MapWinGIS.IImage.Open(System.String,MapWinGIS.ImageType,System.Boolean,MapWinGIS.ICallback)">
@@ -4928,7 +4945,7 @@
49284945
<summary>
49294946
Changes the data source of the image object without the its closing.
49304947
</summary>
4931-
<param name="newImgPath">The new file to serve as a datasource for the image object.</param>
4948+
<param name="NewImgPath">The new file to serve as a datasource for the image object.</param>
49324949
<returns>True on success and false otherwise.</returns>
49334950
</member>
49344951
<member name="M:MapWinGIS.IImage.Save(System.String,System.Boolean,MapWinGIS.ImageType,MapWinGIS.ICallback)">
@@ -4937,7 +4954,7 @@
49374954
</summary>
49384955
<param name="ImageFileName">The filename to use to save the image.</param>
49394956
<param name="WriteWorldFile">Optional. A boolean value representing whether a world file is also written. The default is false.</param>
4940-
<param name="fileType">Optional. The file type to use to save the image. Default is "USE_FILE_EXTENSION".</param>
4957+
<param name="FileType">Optional. The file type to use to save the image. Default is "USE_FILE_EXTENSION".</param>
49414958
<param name="cBack">Optional. The ICallback object which will receive the progress and error messages while the image is being saved.</param>
49424959
<returns>A boolean value representing the success or failure of saving the image.</returns>
49434960
</member>
@@ -4974,18 +4991,18 @@
49744991
<summary>
49754992
Converts coordinates of image's pixel to the screen coordinates.
49764993
</summary>
4977-
<param name="ImageX">The x coordinate of the image.</param>
4978-
<param name="ImageY">The y coordinate of the image.</param>
4979-
<param name="projX">The resulting x coordinate of the map.</param>
4980-
<param name="projY">The resulting y coordinate of the map.</param>
4994+
<param name="Column">The column.</param>
4995+
<param name="Row">The row.</param>
4996+
<param name="ProjX">The resulting x coordinate of the map.</param>
4997+
<param name="ProjY">The resulting y coordinate of the map.</param>
49814998
\new48 Added in version 4.8
49824999
</member>
49835000
<member name="M:MapWinGIS.IImage.ProjectionToBuffer(System.Double,System.Double,System.Int32@,System.Int32@)">
49845001
<summary>
49855002
Returns the coordinates of pixel in image buffer which correspond to the given point on the map.
49865003
</summary>
4987-
<param name="projX">X coordinate of the point in map units.</param>
4988-
<param name="projY">Y coordinate of the point in map units.</param>
5004+
<param name="ProjX">X coordinate of the point in map units.</param>
5005+
<param name="ProjY">Y coordinate of the point in map units.</param>
49895006
<param name="BufferX">The resulting x coordinate of pixel in the image buffer.</param>
49905007
<param name="BufferY">The resulting y coordinate of pixel in the image buffer.</param>
49915008
\new48 Added in version 4.8
@@ -4994,10 +5011,10 @@
49945011
<summary>
49955012
Returns the coordinates of image pixel which correspond to the given point on the map.
49965013
</summary>
4997-
<param name="projX">X coordinate of the point in map units.</param>
4998-
<param name="projY">Y coordinate of the point in map units.</param>
4999-
<param name="ImageX">The resulting x coordinate of image pixel.</param>
5000-
<param name="ImageY">The resulting y coordinate of image pixel.</param>
5014+
<param name="ProjX">X coordinate of the point in map units.</param>
5015+
<param name="ProjY">Y coordinate of the point in map units.</param>
5016+
<param name="Column">The column.</param>
5017+
<param name="Row">The row.</param>
50015018
\new48 Added in version 4.8
50025019
</member>
50035020
<member name="M:MapWinGIS.IImage.SetTransparentColor(System.UInt32)">
@@ -5053,15 +5070,15 @@
50535070
Gets the value of a pixel in the image.
50545071
</summary>
50555072
<param name="Row">The row in the image for which the value is required.</param>
5056-
<param name="col">The column in the image for which the value is required.</param>
5073+
<param name="Column">The column in the image for which the value is required.</param>
50575074
<returns>The value of the specified pixel in the image.</returns>
50585075
</member>
50595076
<member name="M:MapWinGIS.IImage.set_Value(System.Int32,System.Int32,System.Int32)">
50605077
<summary>
50615078
Sets the value of a pixel in the image.
50625079
</summary>
50635080
<param name="Row">The row in the image for which the value is required.</param>
5064-
<param name="col">The column in the image for which the value is required.</param>
5081+
<param name="Column">The column in the image for which the value is required.</param>
50655082
<param name="pVal">The value of the specified pixel in the image.</param>
50665083
</member>
50675084
<member name="M:MapWinGIS.IImage.OpenAsGrid">
@@ -5107,7 +5124,7 @@
51075124
Gets the value of the specified pixel including the alpha component.
51085125
</summary>
51095126
<param name="Row">The row.</param>
5110-
<param name="col">The column.</param>
5127+
<param name="Column">The column.</param>
51115128
<returns>32bit unsigned integer value.</returns>
51125129
\new494 Added in version 4.9.4
51135130
</member>
@@ -5116,7 +5133,7 @@
51165133
Sets the value of the specified pixel including the alpha component.
51175134
</summary>
51185135
<param name="Row">The row.</param>
5119-
<param name="col">The column.</param>
5136+
<param name="Column">The column.</param>
51205137
<param name="pVal">The value to set.</param>
51215138
\new494 Added in version 4.9.4
51225139
</member>
@@ -10590,7 +10607,7 @@
1059010607
only ones in case the function is called multiple times for each polygon in shapefile.</remarks>
1059110608
\new490 Added in version 4.9.0
1059210609
</member>
10593-
<member name="M:MapWinGIS.IUtils.GridStatisticsToShapefile(MapWinGIS.Grid,MapWinGIS.Shapefile,System.Boolean,System.Boolean)">
10610+
<member name="M:MapWinGIS.IUtils.GridStatisticsToShapefile(MapWinGIS.Grid,MapWinGIS.Shapefile,System.Boolean,System.Boolean,System.Boolean)">
1059410611
<summary>
1059510612
Calculates statistics for grid cells within each polygon of the specified shapefile. Writes results to attribute table of shapefile.
1059610613
</summary>
@@ -10600,6 +10617,8 @@
1060010617
When set to false, calculation will be made for all polygons in shapefile.</param>
1060110618
<param name="overwriteFields">If true output fields will be overwritten (if the fields with such names already exist).
1060210619
Otherwise new set of output fields will be created with numerical indices added to their names.</param>
10620+
<param name="useCenterWithinMethod">If true (default) the center of the pixel needs to be inside the polygon.
10621+
If set to false Intersection method is used meaning each pixel boundary that intersects with the polygon is used. Added in v4.9.4.3.</param>
1060310622
<returns>True on success.</returns>
1060410623
<remarks>The default names for output fields: "Mean", "Median", "Majority", "Minority", "Minimum", "Maximum",
1060510624
"Range", "StD", "Sum", "MinX", "MinY", "Variety", "Count"</remarks>
@@ -10892,6 +10911,15 @@
1089210911
<param name="connectionString">Connection string for RDMSs or filename for file-based formats.</param>
1089310912
<returns>True on success.</returns>
1089410913
</member>
10914+
<member name="M:MapWinGIS.IOgrDatasource.Open2(System.String,System.Boolean)">
10915+
<summary>
10916+
Opens particular type of datasource supported by GDAL/OGR.
10917+
</summary>
10918+
<remarks>See details about connection strings here: http://www.gdal.org/ogr_formats.html</remarks>
10919+
<param name="connectionString">Connection string for RDMSs or filename for file-based formats.</param>
10920+
<param name="forUpdate">Indicates whether datasource will be opened with update flag.</param>
10921+
<returns>True on success.</returns>
10922+
</member>
1089510923
<!-- Badly formed XML comment ignored for member "M:MapWinGIS.IOgrDatasource.GetLayer(System.Int32,System.Boolean)" -->
1089610924
<member name="M:MapWinGIS.IOgrDatasource.GetLayerName(System.Int32)">
1089710925
<summary>

0 commit comments

Comments
 (0)