New (Stringlist constructor): Difference between revisions
Jump to navigation
Jump to search
m (Apply Dave's comments) |
m (more consistent layout and better tagging) |
||
Line 2: | Line 2: | ||
This method returns a new instance of a <var>Stringlist</var>. | This method returns a new instance of a <var>Stringlist</var>. | ||
==Syntax== | ==Syntax== | ||
Line 17: | Line 10: | ||
<td>A <var>Stringlist</var> object that is set to a new <var>Stringlist</var> object reference. </td></tr> | <td>A <var>Stringlist</var> object that is set to a new <var>Stringlist</var> object reference. </td></tr> | ||
<tr><th>imageName</th> | <tr><th>imageName</th> | ||
<td>An, optional, string that contains the name of an image to be "associated" or "bound" to the <var class="term">sl</var> <var>Stringlist</var>. This is an optional argument. | <td>An, optional, string that contains the name of an image to be "associated" or "bound" to the <var class="term">sl</var> <var>Stringlist</var>. This is an optional argument. <b><i>This argument is case sensitive</i></b>. That is, in the likely event the User Language was written in mixed case, with automatic upper-casing in effect, the image name should be in uppercase (see [[Mixed-case User Language]]).</td></tr> | ||
</table> | </table> | ||
==Usage notes== | ==Usage notes== | ||
<ul> | <ul> | ||
<li>All errors in <var>New</var> result in request cancellation. | <li>All errors in <var>New</var> result in request cancellation.<li><var>New</var> is a constructor and as such can be called with no object, with an explicit class name, or with an object variable, even if that object is null: | ||
<p class="code">%sl = new | |||
%sl = %(Stringlist):new | |||
%sl = %sl:new | |||
</p> | |||
<li>Specifying an image name on the <var>New</var> method is identical to using a simple <var>New</var> with no parameters followed by a <var>[[BindImage (Stringlist subroutine)|BindImage]]</var> method on the new object: | <li>Specifying an image name on the <var>New</var> method is identical to using a simple <var>New</var> with no parameters followed by a <var>[[BindImage (Stringlist subroutine)|BindImage]]</var> method on the new object: | ||
Line 34: | Line 31: | ||
</p> | </p> | ||
</ul> | |||
==See also== | ==See also== | ||
For more information about the association or binding of an image to a <var>Stringlist</var>, see <var>[[BindImage (Stringlist subroutine)|BindImage]]</var>. | |||
{{Template:Stringlist:New footer}} | {{Template:Stringlist:New footer}} |
Revision as of 03:05, 27 January 2011
Create new Stringlist instance (Stringlist class)
This method returns a new instance of a Stringlist.
Syntax
%sl = [%(Stringlist):]New[( [imageName])]
Syntax terms
%sl | A Stringlist object that is set to a new Stringlist object reference. |
---|---|
imageName | An, optional, string that contains the name of an image to be "associated" or "bound" to the sl Stringlist. This is an optional argument. This argument is case sensitive. That is, in the likely event the User Language was written in mixed case, with automatic upper-casing in effect, the image name should be in uppercase (see Mixed-case User Language). |
Usage notes
- All errors in New result in request cancellation.
- New is a constructor and as such can be called with no object, with an explicit class name, or with an object variable, even if that object is null:
%sl = new %sl = %(Stringlist):new %sl = %sl:new
- Specifying an image name on the New method is identical to using a simple New with no parameters followed by a BindImage method on the new object:
%list = new('IMAGENAME')
is equivalent to
%list = new %list:bindImage('IMAGENAME')
See also
For more information about the association or binding of an image to a Stringlist, see BindImage.