This site has been archived and made available for preservation purposes. No edits can be made.

GetCell

This is an old revision of this page, as edited 09-28-2011, 06:22 PM by . It may differ significantly from the current revision.
Retrieves the current cell of an [[Object]].

== Declaration ==
<code cpp>
VAULTSCRIPT vaultmp::Cell (*GetCell)(vaultmp::ID);
native GetCell(ID);
</code>
== Parameters ==

'''[[ID|vaultmp::ID]]''' - the ID of the Object

== Return value ==

Returns a [[Cell|vaultmp::Cell]] containing the cell.

== Usage example (C++) ==

<code cpp>
vaultmp::Cell cell;
cell = GetCell(object);
</code>