Name property: AttributeValue class
Description
This property returns the name of the AttributeValue as a string.
The length of this property is 30 characters.
This property is read-only.
Example
&AttrColl = &Folder.Attributes;
&Attr = &AttrColl.First();
&Scroll = GetLevel0().GetRow(1).GetRowset(Scroll.PORTAL_FLDR_ATR);
&I = 1;
While All(&Attr)
&Record = &Scroll.GetRow(&I).GetRecord(Record.PORTAL_FLDR_ATR);
&Record.PORTAL_ATTR_NAM.Value = &Attr.Name;
&Record.PORTAL_ATTR_VAL.Value = &Attr.Value;
&Attr = &AttrColl.Next();
/* need this check so we don't insert extra blank row */
If All(&Attr) Then
&Scroll.InsertRow(&I);
&I = &I + 1;
End-If;
End-While;