New (CharacterToUnicodeMap constructor): Difference between revisions
Jump to navigation
Jump to search
m (Automatically generated page update) |
mNo edit summary |
||
Line 16: | Line 16: | ||
<td>Unicode</td></tr> | <td>Unicode</td></tr> | ||
</table> | </table> | ||
==Usage notes== | ==Usage notes== | ||
<ul> | |||
<li>As described in [[Object variables#Using New or other Constructors|"Using New or other Constructors"]], <var>New</var> can be invoked with no object, with an explicit class name, or with an object variable in the class, even if that object is <var>Null</var>:<p class="code">%charToUniMap = new | |||
%charToUniMap = %(CharacterToUnicodeMap):new | |||
%charToUniMap = %charToUniMap:new | |||
</p> | |||
</ul> | |||
==Examples== | ==Examples== | ||
==See also== | ==See also== | ||
{{Template:CharacterToUnicodeMap:New footer}} | {{Template:CharacterToUnicodeMap:New footer}} |
Revision as of 01:22, 22 November 2011
Create CharacterToUnicodeMap object (CharacterToUnicodeMap class)
[Introduced in Sirius Mods 8.0]
This page is under construction.
Syntax
%characterToUnicodeMap = [%(CharacterToUnicodeMap):]New[( [In= string], - [Out= unicode], [Pad= unicode])]
Syntax terms
%outCharacterToUnicodeMap | characterToUnicodeMap |
---|---|
[%(CharacterToUnicodeMap)] | The optional class name in parentheses denotes a Constructor. See "Usage notes", below, for more information about invoking a Constructor. |
In | string |
Out | Unicode |
Pad | Unicode |
Usage notes
- As described in "Using New or other Constructors", New can be invoked with no object, with an explicit class name, or with an object variable in the class, even if that object is Null:
%charToUniMap = new %charToUniMap = %(CharacterToUnicodeMap):new %charToUniMap = %charToUniMap:new