UnbindImage (Stringlist subroutine): Difference between revisions

From m204wiki
Jump to navigation Jump to search
mNo edit summary
mNo edit summary
Line 7: Line 7:
<table class="syntaxTable">
<table class="syntaxTable">
<tr><th>sl</th>
<tr><th>sl</th>
<td>Stringlist object</td></tr>
<td><var>Stringlist</var> object</td></tr>
</table>
</table>



Revision as of 15:46, 20 January 2011

Disassociate a Stringlist from an image (Stringlist class)


This method disassociates or unbinds an image from a Stringlist. UnbindImage is a subroutine that accepts no arguments and does not return anything.

Syntax

sl:UnbindImage

Syntax terms

sl Stringlist object

Usage notes

UnbindImage undoes the binding created by the BindImage method.

Examples

The following example illustrates the use of UnbindImage after a BindImage:

%list is object stringList ... image customer id is string len 8 lname is string len 32 end image ... %list = new %list:bindImage('CUSTOMER') ... %list:unbindImage