CopyImageBinding (Stringlist subroutine): Difference between revisions

From m204wiki
Jump to navigation Jump to search
m (Automatically generated page update)
 
mNo edit summary
 
Line 1: Line 1:
{{Template:Stringlist:CopyImageBinding subtitle}}
{{Template:Stringlist:CopyImageBinding subtitle}}


This page is [[under construction]].
==Syntax==
==Syntax==
{{Template:Stringlist:CopyImageBinding syntax}}
{{Template:Stringlist:CopyImageBinding syntax}}
===Syntax terms===
===Syntax terms===
<table class="syntaxTable">
<table class="syntaxTable">
<tr><th>sl</th>
<tr><th>sl</th>
<td>Stringlist object</td></tr>
<td>A <var>Stringlist</var> object to be assigned the same image binding as the <var class="term">boundList</var> <var>Stringlist</var>.</td></tr>
 
<tr><th>boundList</th>
<tr><th>boundList</th>
<td><var>Stringlist</var> object</td></tr>
<td>A <var>Stringlist</var> object that is bound to an image, say by the <var>[[BindImage (Stringlist subroutine)|BindImage]]</var> method or the <var>[[New (Stringlist constructor)|New]]</var> method.</td></tr>
</table>
</table>
==Usage notes==
==Usage notes==
==Examples==
<ul>
<li><var>CopyImageBinding</var> does not affect the contents of either the target or source <var>Stringlist</var>; it simply changes the current image association of the target <var>Stringlist</var>, <var class="term">sl</var>. If the source <var>Stringlist</var>, <var class="term">boundlist</var>, has no image association, <var>CopyImageBinding</var> removes any image association from the <var class="term">sl</var> <var>Stringlist</var>.
<li>These methods can use the association between an image and a <var>Stringlist</var>:
<ul>
<li><var>[[AddImage (Stringlist function)|AddImage]]</var>
<li><var>[[GetImage (Stringlist subroutine)|GetImage]]</var>
<li><var>[[InsertImage (Stringlist function)|InsertImage]]</var>
<li><var>[[ReplaceImage (Stringlist function)|ReplaceImage]]</var>
<li><var>[[Sort (Stringlist subroutine)|Sort]]</var>
<li><var>[[SortNew (Stringlist function)|SortNew]]</var>
</ul>
</ul>
 
==See also==
==See also==
{{Template:Stringlist:CopyImageBinding footer}}
{{Template:Stringlist:CopyImageBinding footer}}

Latest revision as of 19:28, 25 June 2012

Copy image association from another Stringlist (Stringlist class)


Syntax

sl:CopyImageBinding( boundList)

Syntax terms

sl A Stringlist object to be assigned the same image binding as the boundList Stringlist.
boundList A Stringlist object that is bound to an image, say by the BindImage method or the New method.

Usage notes

  • CopyImageBinding does not affect the contents of either the target or source Stringlist; it simply changes the current image association of the target Stringlist, sl. If the source Stringlist, boundlist, has no image association, CopyImageBinding removes any image association from the sl Stringlist.
  • These methods can use the association between an image and a Stringlist:

See also