TryToEnable - ReferenceAlias

Revision as of 11:14, 3 December 2015 by imported>Plplecuyer
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

Member of: ReferenceAlias Script

This is a convenient way to enable a reference in an alias without calling GetReference() on it. It's mostly useful in cases where you have lots of aliases that may or may not be filled and you want to call Enable() on them without having to test for a reference being present first.

SyntaxEdit

bool Function TryToEnable()

ParametersEdit

None

Return ValueEdit

True if the reference was enabled, false if there was no reference to enable

ExamplesEdit

; Enable the cool object
if CoolAlias.TryToEnable()
  Debug.Trace("Cool object enabled!")
else
  Debug.Trace("No cool object exists...")
endIf

See AlsoEdit