DataObject.GetAttachedString

Prototypes

String GetAttachedString( String sName )

Return Value

The return value is a reference to the attached string. If there is no attachment with the specified name, the return value is null.

Parameters

String sName
The name of the attachment.

Remarks

This method returns the attachment with the specified name. The attachment must have been added using the method AddAttachedString.

The DataObject class enables you to add attachments to a DataObject. This enables you to associate additional information about the data in a DataObject with the DataObject itself. The DataObject does not use your attachments. Note that attachments exist only in memory. They are not stored when you store the DataObject.

Example
title = "Example";
declare DataObject dobj = DataObject.Create( title );

dobj.AddAttachedString( "Title", title );

x = dobj.GetAttachedString( "Title" );
print x;
See Also

DataObject.AddAttachedString