Loads a previously saved state saved by the Save() method.
- loadValue (String)
- A single string holding data necessary for this plug-in to reload a previous state.
True if the load went successfully, false otherwise.
The load method is meant to only be called when recalling a previously saved state. This method differs from
the Initialize() method in that it only takes a load string. Where as initialize is required for proper execution in most
plug-ins, Load() is really only necessary when recalling a previous state of the plug-in. Load and Save are complementary methods
- Load will understand the string returned by Save(). Multiple consecutive loads should also be considered when implementing
the Load() method.