Internet Object
 
Syntax
 
Internet.FullScreen[ = True|False]
 
Description
Indicates whether the Internet Explorer fullscreen is active or not. Can also be set (read/write). For more information about the Document object, see (online) help for the Microsoft Interner Explorer.
 
Parameter
Description
True/False
False = no fullscreen, True = Fullscreen
See Also
Example
 
Sub Main
 
   Internet.OpenPage "http//www.tradium.nl"
   Wait 3 ‘sekonden
   Internet.FullScreen = True
   Wait 3 ‘sekonden
   Internet.FullScreen = False
   Wait 3 ‘sekonden
 
   Internet.ClosePage
 
End Sub