| Function | public function string wd_opendoc (string wordfile, s_open_options options) | ![]() |
Opens word file some parameterscan be specified using options parameter
public function string wd_opendoc (string wordfile, s_open_options options); string ls_options ls_options = "" IF ISVALID( options) THEN if ( NOT ISNULL(options.s_visible)) THEN ls_options += options.s_visible + ";" else ls_options += ";" end if if ( NOT ISNULL(options.passworddocument)) THEN ls_options += options.passworddocument + ";" else ls_options += ";" end if if ( NOT ISNULL(options.s_readonly)) THEN ls_options += options.s_readonly else ls_options += ";" end if END IF return i_PBWWord.opendoc(wordFile,ls_options) end function