The ProgressEvent interface represents events measuring progress
an underlying process, like an HTTP request (for an XMLHttpRequest,
the loading of the underlying resource of an web.<img>
, web.<audio>
,
web.<style>
or web.<link>
).
The ProgressEvent interface represents events measuring progress an underlying process, like an HTTP request (for an XMLHttpRequest, the loading of the underlying resource of an `web.<img>`, `web.<audio>`, `web.<style>` or `web.<link>`).
Constructor.
The ProgressEvent() constructor returns a newly created web.ProgressEvent
, representing the current completion of a long process.
See also: https://developer.mozilla.org/en-US/docs/Web/API/ProgressEvent/ProgressEvent
Constructor. The ProgressEvent() constructor returns a newly created `web.ProgressEvent`, representing the current completion of a long process. See also: `https://developer.mozilla.org/en-US/docs/Web/API/ProgressEvent/ProgressEvent`
(init-progress-event this
type-arg
can-bubble-arg
cancelable-arg
length-computable
loaded
total)
Method.
The ProgressEvent.initProgressEvent() method Initializes an animation
created using the deprecated web.Document.createEvent(\"ProgressEvent\")
Progress.initProgressEvent(typeArg, canBubbleArg, cancelableArg, lengthComputable, loaded, total);
See also: https://developer.mozilla.org/en-US/docs/Web/API/ProgressEvent/initProgressEvent
Method. The ProgressEvent.initProgressEvent() method Initializes an animation created using the deprecated `web.Document.createEvent(\"ProgressEvent\")` `Progress.initProgressEvent(typeArg, canBubbleArg, cancelableArg, lengthComputable, loaded, total);` See also: `https://developer.mozilla.org/en-US/docs/Web/API/ProgressEvent/initProgressEvent`
(length-computable this)
Property.
The ProgressEvent.lengthComputable read-only property is a web.Boolean
indicating if the resource concerned by the web.ProgressEvent
a length that can be calculated. If not, the web.ProgressEvent.total
has no significant value.
flag = ProgressEvent.lengthComputable
See also: https://developer.mozilla.org/en-US/docs/Web/API/ProgressEvent/lengthComputable
Property. The ProgressEvent.lengthComputable read-only property is a `web.Boolean` indicating if the resource concerned by the `web.ProgressEvent` a length that can be calculated. If not, the `web.ProgressEvent.total` has no significant value. `flag = ProgressEvent.lengthComputable` See also: `https://developer.mozilla.org/en-US/docs/Web/API/ProgressEvent/lengthComputable`
(loaded this)
Property.
The ProgressEvent.loaded read-only property is an integer representing amount of work already performed by the underlying process. The of work done can be calculated with the property and ProgressEvent.total. downloading a resource using HTTP, this only represent the part the content itself, not headers and other overhead.
value = ProgressEvent.loaded
See also: https://developer.mozilla.org/en-US/docs/Web/API/ProgressEvent/loaded
Property. The ProgressEvent.loaded read-only property is an integer representing amount of work already performed by the underlying process. The of work done can be calculated with the property and ProgressEvent.total. downloading a resource using HTTP, this only represent the part the content itself, not headers and other overhead. `value = ProgressEvent.loaded` See also: `https://developer.mozilla.org/en-US/docs/Web/API/ProgressEvent/loaded`
(set-length-computable! this val)
Property.
The ProgressEvent.lengthComputable read-only property is a web.Boolean
indicating if the resource concerned by the web.ProgressEvent
a length that can be calculated. If not, the web.ProgressEvent.total
has no significant value.
flag = ProgressEvent.lengthComputable
See also: https://developer.mozilla.org/en-US/docs/Web/API/ProgressEvent/lengthComputable
Property. The ProgressEvent.lengthComputable read-only property is a `web.Boolean` indicating if the resource concerned by the `web.ProgressEvent` a length that can be calculated. If not, the `web.ProgressEvent.total` has no significant value. `flag = ProgressEvent.lengthComputable` See also: `https://developer.mozilla.org/en-US/docs/Web/API/ProgressEvent/lengthComputable`
(set-loaded! this val)
Property.
The ProgressEvent.loaded read-only property is an integer representing amount of work already performed by the underlying process. The of work done can be calculated with the property and ProgressEvent.total. downloading a resource using HTTP, this only represent the part the content itself, not headers and other overhead.
value = ProgressEvent.loaded
See also: https://developer.mozilla.org/en-US/docs/Web/API/ProgressEvent/loaded
Property. The ProgressEvent.loaded read-only property is an integer representing amount of work already performed by the underlying process. The of work done can be calculated with the property and ProgressEvent.total. downloading a resource using HTTP, this only represent the part the content itself, not headers and other overhead. `value = ProgressEvent.loaded` See also: `https://developer.mozilla.org/en-US/docs/Web/API/ProgressEvent/loaded`
(set-total! this val)
Property.
The ProgressEvent.total read-only property is an integer representing total amount of work that the underlying process is in the progress performing. When downloading a resource using HTTP, this only the content itself, not headers and other overhead.
value = ProgressEvent.total
See also: https://developer.mozilla.org/en-US/docs/Web/API/ProgressEvent/total
Property. The ProgressEvent.total read-only property is an integer representing total amount of work that the underlying process is in the progress performing. When downloading a resource using HTTP, this only the content itself, not headers and other overhead. `value = ProgressEvent.total` See also: `https://developer.mozilla.org/en-US/docs/Web/API/ProgressEvent/total`
(total this)
Property.
The ProgressEvent.total read-only property is an integer representing total amount of work that the underlying process is in the progress performing. When downloading a resource using HTTP, this only the content itself, not headers and other overhead.
value = ProgressEvent.total
See also: https://developer.mozilla.org/en-US/docs/Web/API/ProgressEvent/total
Property. The ProgressEvent.total read-only property is an integer representing total amount of work that the underlying process is in the progress performing. When downloading a resource using HTTP, this only the content itself, not headers and other overhead. `value = ProgressEvent.total` See also: `https://developer.mozilla.org/en-US/docs/Web/API/ProgressEvent/total`
cljdoc is a website building & hosting documentation for Clojure/Script libraries
× close