UnbindImage (Stringlist subroutine): Difference between revisions
Jump to navigation
Jump to search
m (1 revision) |
m (→Examples) |
||
Line 16: | Line 16: | ||
<ol><li>The following example illustrates the use of <var>UnbindImage</var> after a <var>BindImage</var>: | <ol><li>The following example illustrates the use of <var>UnbindImage</var> after a <var>BindImage</var>: | ||
<p class="code">%list is object stringList | <p class="code">%list is object stringList | ||
image customer | image customer | ||
id is string len 8 | |||
lname is string len 32 | lname is string len 32 | ||
end image | end image | ||
%list = new | %list = new | ||
%list:bindImage('CUSTOMER') | %list:bindImage('CUSTOMER') | ||
... | |||
%list:unbindImage | %list:unbindImage | ||
</p></ol> | </p></ol> |
Revision as of 21:59, 7 February 2011
Disassociate a Stringlist from an image (Stringlist class)
This method disassociates or unbinds an image from a Stringlist. UnbindImage accepts no arguments and does not return anything.
Syntax
sl:UnbindImage
Syntax terms
sl | Stringlist object |
---|
Usage notes
UnbindImage undoes the binding created by BindImage.
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