GetClassMethodNames()
Summary
Returns a list of the names of the methods defined for the class.
Changes
Added to Version 6.0/2012.
Syntax
variable_array = GetClassMethodNames(string classname)
| Argument | Contents |
|---|---|
| classname | The name of the class |
Returns
An array of strings that are the names of the methods defined for the class, or null if there are no methods.
Notes
-
The list does not include methods inherited from other classes.
Error Codes
| Error Type | Meaning |
|---|---|
| NotFound | The specified object class does not exist |
See Also
| Function | Summary |
|---|---|
| CreateObject() | Creates a new object variable based on a class |
| GetObjectClass() | Gets the name of the class for an object |
| GetObjectVariableNames() | Gets an array of strings that are the names of the object variables |
| IsKindOfClass() | Determines whether an object is in a class or inherits from that class |
| ObjectHasMethod() | Determines whether an object's class, or an inherited class, implements a method |