NewFromEbcdicCodepage (CharacterToUnicodeMap function): Difference between revisions

From m204wiki
Jump to navigation Jump to search
m (Automatically generated page update)
 
Line 13: Line 13:
</table>
</table>
==Usage notes==
==Usage notes==
<ul>
<li><var>NewFromEbcdicCodepage</var> is a [[Object variables#Virtual Constructor methods|virtual constructor]] and as such can be called with no method object, with an explicit class name, or with an object variable, even if that object is null:
<p class="code">%charToUmap = NewFromEbcdicCodepage(<var class="term">codepageName</var>)
%charToUmap = %(CharacterToUnicodeMap):NewFromEbcdicCodepage(<var class="term">codepageName</var>)
%charToUmap = %charToUmap:NewFromEbcdicCodepage(<var class="term">codepageName</var>)
</p>
</ul>
==Examples==
==Examples==
==See also==
==See also==
{{Template:CharacterToUnicodeMap:NewFromEbcdicCodepage footer}}
{{Template:CharacterToUnicodeMap:NewFromEbcdicCodepage footer}}

Revision as of 02:01, 30 November 2011

Create CharacterToUnicodeMap object from EBCDIC codepage (CharacterToUnicodeMap class)

[Introduced in Sirius Mods 8.0]


This page is under construction.

Syntax

%characterToUnicodeMap = [%(CharacterToUnicodeMap):]NewFromEbcdicCodepage[( [codepageName])]

Syntax terms

%outCharacterToUnicodeMapCharacterToUnicodeMap object
[%(CharacterToUnicodeMap)] The optional class name in parentheses denotes a virtual constructor. See "Usage notes", below, for more information about invoking a virtual constructor.
codepageName string

Usage notes

  • NewFromEbcdicCodepage is a virtual constructor and as such can be called with no method object, with an explicit class name, or with an object variable, even if that object is null:

    %charToUmap = NewFromEbcdicCodepage(codepageName) %charToUmap = %(CharacterToUnicodeMap):NewFromEbcdicCodepage(codepageName) %charToUmap = %charToUmap:NewFromEbcdicCodepage(codepageName)

Examples

See also