[]
Specifies that this object supports loading.
public interface ILoadable
Implement this interface in your custom business object if it needs long initialization. The C1Tile control honors this interface and calls Load() method in advance to preload tile data before animation. Load method might start synchronous or asynchronous load operation. If Load method returns false, C1Tile will delay animations until IsLoaded property is true.
Name | Description |
---|---|
IsLoaded | Gets the bool value determining whether object has been loaded. |
Name | Description |
---|---|
Load() | Starts synchronous or asynchronous load operation. |