Represents the full progress of a load operation, including percentage.
OnLoadProgressFull
const onLoadProgress: OnLoadProgressFull = { total: 100, loaded: 50, percent: 50}; Copy
const onLoadProgress: OnLoadProgressFull = { total: 100, loaded: 50, percent: 50};
The number of items that have been loaded so far.
The percentage of items that have been loaded so far.
The total number of items to load.
Represents the full progress of a load operation, including percentage.
OnLoadProgressFull
Example