@mescius/spread-sheets 18.2.4 → 18.2.5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -12936,6 +12936,19 @@ declare module GC{
12936
12936
  }
12937
12937
 
12938
12938
 
12939
+ export interface IColumnChangingEventArgs{
12940
+ sheet: GC.Spread.Sheets.Worksheet;
12941
+ sheetName: string;
12942
+ col: number;
12943
+ sheetArea: SheetArea;
12944
+ propertyName: string;
12945
+ oldValue: any;
12946
+ newValue: any;
12947
+ count?: number;
12948
+ cancel: boolean;
12949
+ }
12950
+
12951
+
12939
12952
  export interface IColumnWidthChangedEventArgs{
12940
12953
  sheet: GC.Spread.Sheets.Worksheet;
12941
12954
  sheetName: string;
@@ -13795,6 +13808,19 @@ declare module GC{
13795
13808
  }
13796
13809
 
13797
13810
 
13811
+ export interface IRowChangingEventArgs{
13812
+ sheet: GC.Spread.Sheets.Worksheet;
13813
+ sheetName: string;
13814
+ row: number;
13815
+ sheetArea: SheetArea;
13816
+ propertyName: string;
13817
+ oldValue: any;
13818
+ newValue: any;
13819
+ count?: number;
13820
+ cancel: boolean;
13821
+ }
13822
+
13823
+
13798
13824
  export interface IRowHeightChangedEventArgs{
13799
13825
  sheet: GC.Spread.Sheets.Worksheet;
13800
13826
  sheetName: string;
@@ -18885,6 +18911,9 @@ declare module GC{
18885
18911
  * @param eventParam *number* `col` The column index.
18886
18912
  * @param eventParam *{@link GC.Spread.Sheets.SheetArea}* `sheetArea` The sheetArea of the column.
18887
18913
  * @param eventParam *string* `propertyName` The name of the column's property that has changed.
18914
+ * @param eventParam *Object* `oldValue` The old value of the property.
18915
+ * @param eventParam *Object* `newValue` The new value of the property.
18916
+ * @param eventParam *number* `[count]` The number of columns affected.
18888
18917
  * @param eventParam *boolean* `isUndo` Whether this event is from a undo operation.
18889
18918
  * @example
18890
18919
  * ```javascript
@@ -18906,6 +18935,10 @@ declare module GC{
18906
18935
  * @param eventParam *number* `col` The column index.
18907
18936
  * @param eventParam *{@link GC.Spread.Sheets.SheetArea}* `sheetArea` The sheetArea of the column.
18908
18937
  * @param eventParam *string* `propertyName` The name of the column's property that has changed.
18938
+ * @param eventParam *Object* `oldValue` The old value of the property.
18939
+ * @param eventParam *Object* `newValue` The new value of the property.
18940
+ * @param eventParam *number* `[count]` The number of columns affected.
18941
+ * @param eventParam *boolean* `cancel` Whether the operation should be canceled.
18909
18942
  * @example
18910
18943
  * ```javascript
18911
18944
  * //This example uses the ColumnChanging event.
@@ -20064,6 +20097,9 @@ declare module GC{
20064
20097
  * @param eventParam *number* `row` The row index.
20065
20098
  * @param eventParam *{@link GC.Spread.Sheets.SheetArea}* `sheetArea` The sheetArea of the row.
20066
20099
  * @param eventParam *string* `propertyName` The name of the row's property that has changed.
20100
+ * @param eventParam *Object* `oldValue` The old value of the property.
20101
+ * @param eventParam *Object* `newValue` The new value of the property.
20102
+ * @param eventParam *number* `[count]` The number of rows affected.
20067
20103
  * @param eventParam *boolean* `isUndo` Whether this event is from a undo operation.
20068
20104
  * @example
20069
20105
  * ```javascript
@@ -20083,6 +20119,10 @@ declare module GC{
20083
20119
  * @param eventParam *number* `row` The row index.
20084
20120
  * @param eventParam *{@link GC.Spread.Sheets.SheetArea}* `sheetArea` The sheetArea of the row.
20085
20121
  * @param eventParam *string* `propertyName` The name of the row's property that has changed.
20122
+ * @param eventParam *Object* `oldValue` The old value of the property.
20123
+ * @param eventParam *Object* `newValue` The new value of the property.
20124
+ * @param eventParam *number* `[count]` The number of rows affected.
20125
+ * @param eventParam *boolean* `cancel` Whether the operation should be canceled.
20086
20126
  * @example
20087
20127
  * ```javascript
20088
20128
  * //This example uses the RowChanging event.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mescius/spread-sheets",
3
- "version": "18.2.4",
3
+ "version": "18.2.5",
4
4
  "main": "index.js",
5
5
  "description":"A Complete Microsoft Excel-like JavaScript Spreadsheet for Enterprise Applications",
6
6
  "scripts": {},