Skip to main content
Version: Next

METHOD SET ATTRIBUTES

METHOD SET ATTRIBUTES ( path ; attributes {; *} )

ParameterTypeDescription
pathText, Text array🡒Method path(s)
attributesObject, Object array🡒Attribute(s) to set for selected method(s)
*Operator🡒If passed = command applies to host database when executed from a component (parameter ignored outside of this context)

Description

The METHOD SET ATTRIBUTES command allows you to set the attributes values for the method(s) specified in the path parameter.

In path, you can pass either a text containing a method path, or a text array containing an array of paths. You will need to pass the same kind of parameter (string or array) in attributes in order to set the appropriate attributes. This command only works with project methods. If you pass an invalid path, an error is generated.

In attributes, you pass an object or an array of objects (depending on the kind of parameter you passed in path) containing all the attributes that you want to set for the method(s).

Method attributes must be set using the OB SET or OB SET ARRAY commands, with True or False values for Boolean attributes, or specific values for extended attributes. Only attributes that are present in the attributes parameter will be updated in the method attributes.

If the command is executed from a component, by default it applies to the component methods. If you pass the * parameter, it accesses the methods of the host database.

The supported attributes are:

{    "invisible" : false, // true if visible    "preemptive" : "capable" // or "incapable" or "indifferent"    "publishedWeb" : false,  // true if available through 4D tags and URLs    "publishedSoap": false,  // true if offered as Web Service    "publishedWsdl": false,  // true if published in WSDL    "shared" : false,  // true if shared by components and host database    "publishedSql" : false,  // true if available through SQL    "executedOnServer" : false, // true if executed on server}

Note: "published4DMobile" attributes are deprecated as for 4D v18.

Example

You want to set a single attribute:

 var $attributes : Object
 OB SET($attributes;"executedOnServer";True)
 METHOD SET ATTRIBUTES("aMethod";$attributes) //Only the "executedOnServer" attribute is modified

See also

METHOD GET ATTRIBUTES
METHOD SET ATTRIBUTE