System Reference Summary : 3. System Classes : AppSource Class : AppSource Methods
 
Share this page                  
AppSource Methods
Method
Return
Value
Description
Inherited From
Duplicate()
AppSource
Makes a duplicate of the object, placing a reference to the new object in a reference variable
Object
ExportApp
(filename = varchar(256)
[, appsourceonly = integer]
[, format = integer]
[, metadata = integer])
integer
Creates an export file for the application as filename. Options include exporting to XML with or without metadata.
Defined
FetchComponent
(componentname =
varchar(32))
CompSource
Fetches a component from the application or one of its included applications (including the “iisystem” default included application)
Defined
FetchTaggedValue
(tag =
varchar(256) |
row = integer)
TaggedValue
Returns the TaggedValue associated with this index or tag name in the TaggedValues array of this application
Defined
FindTag(tag = varchar(256))
index
Returns the index of the first occurrence of the specified tag in the TaggedValues array of this application
Defined
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)
varchar
(maxsize)
Returns a varchar containing the text of the tagged value associated with the supplied tag name or row number in the TaggedValues array of the application
Defined
GetTagValue
(tag =
varchar(256) |
row = integer)
StringObject
Returns a StringObject containing the text value associated with this index or tag name in the TaggedValues array of this application
Defined
ImportComp
(filename =
varchar(256)
[, compname = varchar(256)
[, format = integer]
[, metadata = integer])
integer
Loads a frame or procedure stored in an export file into a running application. Options include importing from XML with or without metadata.
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 tagged value identified by its index or tag name from the application'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 application's TaggedValues if the tag is not already present, or amends the TaggedValue if it is present
Defined