Hide a row with POI
Hide a row with POI
I don't see a shortcut in the Klement tools to make a row be hidden.
-
- Site Admin
- Posts: 856
- Joined: Sun Jul 04, 2021 5:12 am
Re: Hide a row with POI
You could do it by adding code like this:
Then when you have a row object and want to hide the row, you do this:
(or pass *OFF to unhide a row)
Code: Select all
D SSRow_setZeroHeight...
D PR EXTPROC(*JAVA
D : ROW_CLASS
D : 'setZeroHeight')
D newVal 1N value
Code: Select all
SSRow_setZeroHeight(row: *ON);