GetBasetagdata()

Returns back the data associated with the parent tag, at the given depth level back

Usage

STRUCTURE = GetBasetagdata( tagname, depth )
Argument Summary
tagname tagname
depth depth - defaults to 1 [optional]

Calling

Supports named-parameter calling allowing you to use the function like:

GetBasetagdata(
   tagname=?, 
   depth=?
);

Supports passing parameters as a structure using ArgumentCollection:

GetBasetagdata( ArgumentCollection={
   tagname : ?, 
   depth : ?
} );