ActiveForm returns the currently active form for the group. If no form is active it returns nil.
()
| 274 | // ActiveForm returns the currently active form for the group. If no |
| 275 | // form is active it returns nil. |
| 276 | func (g *WindowGroup) ActiveForm() Form { |
| 277 | return g.activeForm |
| 278 | } |
| 279 | |
| 280 | // SetActiveForm updates the currently active form for the group. |
| 281 | func (g *WindowGroup) SetActiveForm(form Form) { |
no outgoing calls
no test coverage detected