UnbindImage (Stringlist subroutine)

From m204wiki
Revision as of 00:53, 1 November 2012 by JAL (talk | contribs)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

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 A 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

See also