hi all, i want to check is form Maximized or no.
also i didn't find anything about it in this link
what should i do?
B4X:
Dim jmf As JavaObject = MainForm
Dim stage As JavaObject = jmf.GetField("stage")
If CHECK CODE then
stage.RunMethod("setMaximized", Array As Object(False))
Else
stage.RunMethod("setMaximized", Array As Object(True))
End If
what should i do?