Common questions about WPS Toggle Button on Windows mainly involve state checking, default state settings, and property editing; this FAQ includes 3 common questions and a glossary.
FAQ
How do I run different actions based on the button state?
- Open the related event handling entry for the toggle button.
- Read the Value property in the click event.
- When Value is True, run the action for the pressed state. When Value is False, run the action for the unpressed state.
How do I make the toggle button start in the pressed state?
- Select the inserted toggle button.
- Open the Control Properties panel.
- Set the Value property to True so the button starts in the pressed state.
Why can’t I use toggle button logic as expected?
- Confirm that you are working in WPS Presentation on Windows.
- Check whether the Developer and Control Properties entries are available.
- If you need state-based logic, confirm that your current environment supports VBA-related capabilities.
Glossary
| Term | Definition |
|---|---|
| Toggle Button | A button control that switches between pressed and unpressed states. |
| Caption | The text shown on the control. |
| Value | The property that represents the current button state. True means pressed, and False means unpressed. |
| Name | The control name used to identify one button from another. |