UnbindImage (Stringlist subroutine): Difference between revisions

From m204wiki
Jump to navigation Jump to search
m (1 revision)
mNo edit summary
 
(8 intermediate revisions by 3 users not shown)
Line 1: Line 1:
{{Template:Stringlist:UnbindImage subtitle}}
{{Template:Stringlist:UnbindImage subtitle}}


This method disassociates or unbinds an image from a <var>Stringlist</var>. <var>UnbindImage</var> is a subroutine that accepts no arguments and does not return anything.
This method disassociates or unbinds an image from a <var>Stringlist</var>. <var>UnbindImage</var> accepts no arguments and does not return anything.
==Syntax==
==Syntax==
{{Template:Stringlist:UnbindImage syntax}}
{{Template:Stringlist:UnbindImage syntax}}
===Syntax terms===
===Syntax terms===
<table class="syntaxTable">
<table class="syntaxTable">
<tr><th>sl</th>
<tr><th>sl</th>
<td><var>Stringlist</var> object</td></tr>
<td>A <var>Stringlist</var> object.</td></tr>
</table>
</table>


==Usage notes==
==Usage notes==
<var>UnbindImage</var> undoes the binding created by the <var>[[BindImage (Stringlist subroutine)|BindImage]]</var> method.
<ul>
<li><var>UnbindImage</var> undoes the binding created by <var>[[BindImage (Stringlist subroutine)|BindImage]]</var>.
</ul>
 
==Examples==
==Examples==
The following example illustrates the use of <var>UnbindImage</var> after a <var>BindImage</var>:
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
  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')
Line 27: Line 29:
</p>
</p>


[[Category:Stringlist methods|UnbindImage subroutine]]
==See also==
{{Template:Stringlist:UnbindImage footer}}

Latest revision as of 00:53, 1 November 2012

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