Copy (CharacterMap function): Difference between revisions

From m204wiki
Jump to navigation Jump to search
m (1 revision)
m (fix terms in Terms)
Line 12: Line 12:
===Syntax terms===
===Syntax terms===
<table class="syntaxTable">
<table class="syntaxTable">
<tr><th>%newmap</th>
<tr><th>%object</th>
<td>A CharacterMap object variable to contain the copied object.</td></tr>
<td>A CharacterMap object variable to contain the copied object.</td></tr>
<tr><th>%map</th>
<tr><th>characterMap</th>
<td>A CharacterMap object variable.
<td>A CharacterMap object variable.
</td></tr>
</td></tr>
Line 20: Line 20:
==Usage notes==
==Usage notes==
<ul>
<ul>
<li>The method object (''%rand'') may be null.
<li>The method object (''characterMap'') may be null.
The output of a copy of a null object is a null object.
The output of a copy of a null object is a null object.
<li>For an example of a Copy call, see the [[CharacterMap class#Example|CharacterMap class]] page.
<li>For an example of a Copy call, see the [[CharacterMap class#Example|CharacterMap class]] page.
</ul>
</ul>

Revision as of 15:52, 17 January 2011

Copy specified CharacterMap object (CharacterMap class)

Copy is a member of the CharacterMap class.

For more information about copyability, see Copying objects.

Syntax

%outCharacterMap = characterMap:Copy

Syntax terms

%object A CharacterMap object variable to contain the copied object.
characterMap A CharacterMap object variable.

Usage notes

  • The method object (characterMap) may be null. The output of a copy of a null object is a null object.
  • For an example of a Copy call, see the CharacterMap class page.