Skip to content

Commit

Permalink
[se][builder] Change version for some methods from "7.5.1" to "7.6.0".
Browse files Browse the repository at this point in the history
  • Loading branch information
AlexeyMatveev686 committed Oct 6, 2023
1 parent 5196157 commit f3e2a6b
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions cell/apiBuilder.js
Original file line number Diff line number Diff line change
Expand Up @@ -917,7 +917,7 @@
* @memberof Api
* @typeofeditors ["CSE"]
* @param {FreezePaneType} FreezePaneType - The type of freezing ('null' to unfreeze).
* @since 7.5.1
* @since 7.6.0
*/
Api.prototype.SetFreezePanesType = function(FreezePaneType) {
if (typeof FreezePaneType === 'string' || FreezePaneType === null) {
Expand Down Expand Up @@ -952,7 +952,7 @@
* @memberof Api
* @typeofeditors ["CSE"]
* @returns {FreezePaneType} FreezePaneType - The type of freezing ('null' - if there is no frozen pane).
* @since 7.5.1
* @since 7.6.0
*/
Api.prototype.GetFreezePanesType = function() {
let cell = this.wb.getWorksheet().topLeftFrozenCell;
Expand Down Expand Up @@ -6478,7 +6478,7 @@
* @memberof ApiFreezePanes
* @typeofeditors ["CSE"]
* @param {ApiRange | String} frozenRange - A range that represents the cells to be frozen panes.
* @since 7.5.1
* @since 7.6.0
*/
ApiFreezePanes.prototype.FreezeAt = function(frozenRange) {
let api = this.ws.workbook.oApi;
Expand All @@ -6499,7 +6499,7 @@
* @memberof ApiFreezePanes
* @typeofeditors ["CSE"]
* @param {Number?} [count=0] - Optional number of columns to freeze, or zero to unfreeze all columns.
* @since 7.5.1
* @since 7.6.0
*/
ApiFreezePanes.prototype.FreezeColumns = function(count) {
let api = this.ws.workbook.oApi;
Expand All @@ -6518,7 +6518,7 @@
* @memberof ApiFreezePanes
* @typeofeditors ["CSE"]
* @param {Number?} [count=0] - Optional number of rows to freeze, or zero to unfreeze all rows.
* @since 7.5.1
* @since 7.6.0
*/
ApiFreezePanes.prototype.FreezeRows = function(count) {
let api = this.ws.workbook.oApi;
Expand All @@ -6537,7 +6537,7 @@
* @memberof ApiFreezePanes
* @typeofeditors ["CSE"]
* @returns {ApiRange | null} - Returns null if there is no frozen pane.
* @since 7.5.1
* @since 7.6.0
*/
ApiFreezePanes.prototype.GetLocation = function() {
let result = null;
Expand Down Expand Up @@ -6568,7 +6568,7 @@
* Removes all frozen panes in the worksheet.
* @memberof ApiFreezePanes
* @typeofeditors ["CSE"]
* @since 7.5.1
* @since 7.6.0
*/
ApiFreezePanes.prototype.Unfreeze = function() {
if (!!this.ws.workbook.oApi.wb.getWorksheet().topLeftFrozenCell)
Expand Down

0 comments on commit f3e2a6b

Please sign in to comment.