System Reference Summary : System Classes : MethodObject Class : MethodObject Methods
 
Share this page          
MethodObject Methods
Method
Return
Value
Description
Inherited From
Duplicate()
AttributeObject
Makes a duplicate of the object, placing a reference to the new object in a reference variable
Object
FetchTaggedValue
(tag =
varchar(256) | row = integer
[,classname = byref(varchar(32))]
[,property = byref(MethodObject)])
TaggedValue
Returns the TaggedValue associated with the first occurrence of this tag name or row number in the TaggedValues array of this method or any same-named methods in its superclasses
Defined
FindTag(tag = varchar(256)
[,classname = byref(varchar(32))]
[,property = byref(MethodObject)])
index
Returns the index of the first occurrence of the specified tag in the TaggedValues array of this method or any same-named methods in its superclasses
Defined
GetAttribute
(
attributename = byref(variable)
{,attributename = byref(variable)})
integer
Gets the values of any number of attributes for the object
Object
GetTaggedValues
(
[tag = varchar(256)
[,delimiter = varchar(256)])
array of TaggedValue
Returns an array of all the TaggedValues that either have this tag or whose tags begin with the tag plus a delimiter
Defined
GetTagText
(tag =
varchar(256) | row = integer
[,classname = byref(varchar(32))]
[,property = byref(MethodObject)])
varchar
(maxsize)
Returns a varchar containing the text of the TaggedValue associated with the first occurrence of the supplied tag name or row number in the TaggedValues array of this method
Defined
GetTagValue
(tag =
varchar(256) | row = integer
[,classname = byref(varchar(32))]
[,property = byref(MethodObject)])
StringObject
Returns a StringObject containing the text value associated with the first occurrence of this tag name or row number in the TaggedValues array of this method
Defined
IsA
(class =
classname)
integer
Returns TRUE if the object is of the same class as, or one of the subclasses of, the class specified by classname
Object
RemoveTaggedValue
(tag =
varchar(256) |
row = integer)
status
Removes a TaggedValue identified by its index or tag name from the MethodObject’s TaggedValues array
Defined
SetAttribute
(
attributename = value
{,attributename = value})
integer
Sets any number of attributes for the object
Object
SetTaggedValue
(tag =
varchar(256),
value = stringobject |
textvalue = varchar(maxsize))
status
Adds a TaggedValue to the method's TaggedValues if the tag is not already present, or amends the TaggedValue if it is present
Defined