From 85b59ba5c6e2b2ad0cce127d414afef187eddb0b Mon Sep 17 00:00:00 2001 From: xj qian <qianxj15@sina.com> Date: 星期四, 14 十一月 2024 15:31:20 +0800 Subject: [PATCH] update --- jrj/xframe/xcontrol/xcell.hpp | 21 +++++++++++++++++---- 1 files changed, 17 insertions(+), 4 deletions(-) diff --git a/jrj/xframe/xcontrol/xcell.hpp b/jrj/xframe/xcontrol/xcell.hpp index 767285f..92911c7 100644 --- a/jrj/xframe/xcontrol/xcell.hpp +++ b/jrj/xframe/xcontrol/xcell.hpp @@ -81,10 +81,7 @@ { return GetKCell()->SetItemString(ARow,ACol,(LPTSTR)value.c_str()); } - int SetRowColumn(int ARow, int ACol) //alias "?SetRowColumn@IXCell@XCell@XOffice@XFrame@Hxsoft@@QAEHHH@Z"; - { - return GetKCell()->SetRowColumn(ARow,ACol); - } + int Copy() //alias "?Copy@IXCell@XCell@XOffice@XFrame@Hxsoft@@QAEHXZ"; { return GetKCell()->Copy() ; @@ -287,6 +284,22 @@ { return GetKCell()->SetReadOnly(bReadOnly); } + int GetFixedRows() + { + return GetKCell()->GetFixedRows(); + } + void SetFixedRows(int value = 1) + { + return GetKCell()->SetFixedRows(value); + } + int GetFixedCols() + { + return GetKCell()->GetFixedCols(); + } + void SetFixedCols(int value = 1) + { + return GetKCell()->SetFixedCols(value); + } }; -- Gitblit v1.9.3