From 8b9038bda83efe8f9f4e3097395fd3ffee31ec9a Mon Sep 17 00:00:00 2001 From: xj qian <qianxj15@sina.com> Date: 星期一, 18 十一月 2024 23:16:27 +0800 Subject: [PATCH] update --- jrj/xframe/xcontrol/xcell.hpp | 16 ++++++++++++++++ 1 files changed, 16 insertions(+), 0 deletions(-) diff --git a/jrj/xframe/xcontrol/xcell.hpp b/jrj/xframe/xcontrol/xcell.hpp index 39d95f4..92911c7 100644 --- a/jrj/xframe/xcontrol/xcell.hpp +++ b/jrj/xframe/xcontrol/xcell.hpp @@ -284,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