JavaScript Editor Ajax toolkit     Ajax website 



Main Page

Declares the accessors for a new property in a class or an interface. Often function set will appear in conjunction with a function get to allow read/write access to a property.

// Syntax for the set accessor of a property in a class.
 [modifiers] function set propertyname(parameter [: type]) {
   [body]
}

// Syntax for the set accessor of a property in an interface.
[modifiers] function set propertyname(parameter [: type])

Expand imageArguments

Expand imageRemarks

Expand imageExample

Expand imageRequirements

Expand imageSee Also



JavaScript Editor Ajax toolkit     Ajax website


©