MaxItemLength (Stringlist property): Difference between revisions

From m204wiki
Jump to navigation Jump to search
Line 17: Line 17:
==Usage notes==
==Usage notes==
<ul>
<ul>
<li><var>MaxItemLength's</var> chief purpose is to avoid having code with a constant (like 6124) whose value is subject to change. Under <var class="product">Sirius Mods</var> Version 6.5, 6124 was the maximum length of a <var>Stringlist</var> item. Some methods, such as <var>[[Locate and LocateUp (Stringlist functions)|Locate]]</var> and <var>[[Locate and LocateUp (Stringlist functions)|LocateUp]]</var>, still only operate on the first 6124 bytes of <var>Stringlist</var> items. While Sirius Software is not likely to reduce this value, because of the complex backward compatibility issues, it might someday increase it, as it eliminated the <var>Stringlist</var> item length limit in <var class="product">Sirius Mods</var> 6.6.
<li><var>MaxItemLength's</var> chief purpose is to avoid having code with a constant (like 6124) whose value is subject to change. Under <var class="product">Sirius Mods</var> Version 6.5, 6124 was the maximum length of a <var>Stringlist</var> item. Some methods, such as <var>Locate</var> and <var>LocateUp</var>, still only operate on the first 6124 bytes of <var>Stringlist</var> items. While Sirius Software is not likely to reduce this value, because of the complex backward compatibility issues, it might someday increase it, as it eliminated the <var>Stringlist</var> item length limit in <var class="product">Sirius Mods</var> 6.6.
</ul>
</ul>


==See also==
==See also==
{{Template:Stringlist:MaxItemLength footer}}
{{Template:Stringlist:MaxItemLength footer}}

Revision as of 16:32, 31 October 2012

Maximum Stringlist item length (Stringlist class)


Under Sirius Mods Version 6.5, this method returns the maximum stringlist item length. Under Sirius Mods Version 6.6, this method returns the part of a stringlist item that is on the first CCATEMP page of the item. While items can be considerably longer than this (up to 2**31-1 bytes), this limit still affects some methods. For example, the Locate and LocateUp will not search beyond the MaxItemLength column in a stringlist item.

MaxItemLength accepts no arguments, and it returns the maximum length of a stringlist item (currently 6124) or that part of a stringlist item that is on the first CCATEMP page of the item.

Syntax

%max = %(Stringlist):MaxItemLength

Syntax terms

%max A numeric variable set to the maximum length of a stringlist item.
%(Stringlist) The class name in parentheses denotes a shared method. MaxItemLength can also be invoked via a Stringlist object variable, which may be null.

Usage notes

  • MaxItemLength's chief purpose is to avoid having code with a constant (like 6124) whose value is subject to change. Under Sirius Mods Version 6.5, 6124 was the maximum length of a Stringlist item. Some methods, such as Locate and LocateUp, still only operate on the first 6124 bytes of Stringlist items. While Sirius Software is not likely to reduce this value, because of the complex backward compatibility issues, it might someday increase it, as it eliminated the Stringlist item length limit in Sirius Mods 6.6.

See also