Before my Page is reloaded I want to store if the Editor is in Fullscreen Mode.
So I need an event on the "F12"-Key, where I store it:
e.g.
if Editor1.FullPage = True then
session("editor1_fullpage") = "True"
else
session("editor1_fullpage") = ""
end if
And in the Onload I set it.
I tried only Editor1.FullPage = True
but the editor wasn't shown in Fullscreen.
Are there any other properties to set?