From f2c1d04ed44c096683292624f12c61c6fbc1c397 Mon Sep 17 00:00:00 2001 From: Doc Date: Tue, 13 Jan 2026 23:02:18 -0500 Subject: [PATCH] Add stepSizeX and stepSizeY properties - Added properties stepSizeX stepSizeY to DFWINDOW --- src/df_tools/dfwindow.py | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/src/df_tools/dfwindow.py b/src/df_tools/dfwindow.py index f5964ea..449b15c 100644 --- a/src/df_tools/dfwindow.py +++ b/src/df_tools/dfwindow.py @@ -164,6 +164,14 @@ class DFWINDOW: def maxGridY(self) -> int: return self._gridy_max + @property + def stepSizeX(self) -> int: + return int(self._step_size_x) + + @property + def stepSizeY(self) -> int: + return int(self._step_size_y) + @property def contentWidth(self) -> int: return int(self._content_right - self._content_left)