|
@@ -90,9 +90,9 @@ type LuckySheetDataBak struct {
|
|
|
Column []int64 `json:"column" description:""`
|
|
|
Row []int64 `json:"row" description:""`
|
|
|
} `json:"luckysheet_selection_range" description:""`
|
|
|
- RhHeight int64 `json:"rh_height" description:""`
|
|
|
- ScrollLeft int64 `json:"scrollLeft" description:""`
|
|
|
- ScrollTop int64 `json:"scrollTop" description:""`
|
|
|
+ RhHeight float64 `json:"rh_height" description:""`
|
|
|
+ ScrollLeft float64 `json:"scrollLeft" description:""`
|
|
|
+ ScrollTop float64 `json:"scrollTop" description:""`
|
|
|
Status int64 `json:"status" description:""`
|
|
|
Visibledatacolumn []int64 `json:"visibledatacolumn" description:""`
|
|
|
Visibledatarow []int64 `json:"visibledatarow" description:""`
|
|
@@ -105,9 +105,9 @@ type LuckySheetData struct {
|
|
|
ChWidth int64 `json:"ch_width" description:"工作表区域的宽度"`
|
|
|
Config LuckySheetDataConfig `json:"config" description:""`
|
|
|
//Index int `json:"index" description:"工作表索引"`
|
|
|
- RhHeight int64 `json:"rh_height" description:"工作表区域的高度"`
|
|
|
- ScrollLeft int64 `json:"scrollLeft" description:"左右滚动条位置"`
|
|
|
- ScrollTop int64 `json:"scrollTop" description:"上下滚动条位置"`
|
|
|
+ RhHeight float64 `json:"rh_height" description:"工作表区域的高度"`
|
|
|
+ ScrollLeft float64 `json:"scrollLeft" description:"左右滚动条位置"`
|
|
|
+ ScrollTop float64 `json:"scrollTop" description:"上下滚动条位置"`
|
|
|
Status int64 `json:"status" description:"激活状态"`
|
|
|
VisibleDataColumn []int64 `json:"visibledatacolumn" description:"所有列的位置信息,递增的列位置数据,初始化无需设置"`
|
|
|
VisibleDataRow []int64 `json:"visibledatarow" description:"所有行的位置信息,递增的行位置数据,初始化无需设置"`
|