OS/2 Procedures Language 2/REXX


Inf-HTML [About][Toc][Index] 0.9b (c) 1995 Peter Childs


SysSetObjectData

 
 Function: SysSetObjectData 
 Syntax:   result = SysSetObjectData(name, setup) 
      name              The object name.  This can be specified as an 
                        object ID (for example <WP_DESKTOP>) or as a fully 
                        specified file name. 
      setup             A WinCreateObject setup string. 
      result            The return code from WinSetObjectData.  This will 
                        return 1 (TRUE) if the object was updated and 0 
                        (FALSE) if the object was not updated. 
      Purpose:          Change the settings of an existing object.  It can 
                        also be used to open an instance of an object. 

           Examples:
           
             /* Code   */
             if SysSetObjectData("MyProgram","NOMOVE=YES") Then
               Say "Myprogram object settings have been updated."
           
           
   

Inf-HTML End Run - Successful