Version: 7.5.9.2 (X86_64) / LibreOffice Community
Build ID: cdeefe45c17511d326101eed8008ac4092f278a9
CPU threads: 4; OS: Linux 5.15; UI render: default; VCL: gtk3
Locale: pt-BR (pt_BR.UTF-8); UI: pt-BR
Calc: threaded
Evening everyone, I’m looking for a way to get the value (boolean) of a checkbox and pass it to a table, just like the following code does to a text box, but instead I need it to checkbox
DailyBox = subform.getByName("Daily")
DailyBoxText = DiariaBox.Text
DailyBox.BoundField.updateString(DailyBoxText)
I would need some function that gets the value of the checkbox and then update the table, something that looks like this:
CheckBox = subform.getByName("Check")
CheckBoxValue = CheckBox.Value
CheckBox.BoundField.updateValue(CheckBoxValue)
And then the value would be changed to True or False on the table.
**I tried using .Value to get the boolean, but it didnt work.