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

GetCell

(Difference between revisions)
Return to current revision
  1. -
    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>