IsAttached - Cell

Revision as of 11:27, 26 October 2015 by imported>Plplecuyer (→‎See Also)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

Member of: Cell Script

Returns whether this cell is currently 'attached' or not. (In the loaded area)

SyntaxEdit

bool Function IsAttached() native

ParametersEdit

None.

Return ValueEdit

Whether this cell is attached or not

ExamplesEdit

; Is the parent cell attached? (In the loaded area)
if (parentCell.IsAttached())
  Debug.Trace("The parent cell is attached")
endIf

See AlsoEdit