File-Name
This property specifies the name of the file generated by Save-As-No-Prompt. This property is set to null after each save.
 
Example - Define a web-browser control and save it as html file in procedure division
screen section.
...
  03 screen-1-wb-1 Web-Browser
     line 23.1
     column 2.0
     size 62.2 cells 
     lines 28.0 cells 
     id 15
     event-list ( cmd-goto cmd-help )
     exclude-event-list 1
     value "https://www.veryant.com"
     .
...
procedure division.
...
  modify screen-1-wb-1 
         file-name "c:\main-st\tmp\veryant.html"
         save-as-no-prompt 1.