Articles tagged: API
Found 5012 documents
- Web/API/BluetoothRemoteGATTService/isPrimary The BluetoothGATTService.isPrimary read-only property returns a Boolean that indicates whether ...
- Web/API/BluetoothRemoteGATTService/uuid The BluetoothGATTService.uuid read-only property returns a DOMString representing the UUID of ...
- Web/API/BluetoothStatusChangedEvent The BluetoothStatusChangedEvent API provides access to information regarding any change to the ...
- Web/API/BluetoothStatusChangedEvent/address The address property represents the address of the device for which the status has changed in ...
- Web/API/BluetoothStatusChangedEvent/status The status property indicates if the connection is active (true) or not (false).
- Web/API/Body The Body mixin of the Fetch API represents the body of the response/request, allowing you to ...
- Web/API/Body/arrayBuffer The arrayBuffer() method of the Body mixin takes a Response stream and reads it to completion. ...
- Web/API/Body/blob The blob() method of the Body mixin takes a Response stream and reads it to completion. It ...
- Web/API/Body/body The body read-only property of the Body mixin is a simple getter used to expose a ReadableStream ...
- Web/API/Body/bodyUsed The bodyUsed read-only property of the Body mixin contains a Boolean that indicates whether the ...
- Web/API/Body/formData The formData() method of the Body mixin takes a Response stream and reads it to completion. It ...
- Web/API/Body/json The json() method of the Body mixin takes a Response stream and reads it to completion. It ...
- Web/API/Body/text The text() method of the Body mixin takes a Response stream and reads it to completion. It ...
- Web/API/BroadcastChannel The BroadcastChannel interface represents a named channel that any browsing context of a given ...
- Web/API/BroadcastChannel/BroadcastChannel The BroadcastChannel() constructor creates a new BroadcastChannel and connects it to the ...
- Web/API/BroadcastChannel/close The BroadcastChannel.close() terminates the connection to the underlying channel, allowing the ...
- Web/API/BroadcastChannel/onmessage The BroadcastChannel.onmessage event handler is a property that specifies the function to ...
- Web/API/BroadcastChannel/onmessageerror The onmessageerror event handler of the BroadcastChannel interface is an EventListener, called ...
- Web/API/BroadcastChannel/postMessage The BroadcastChannel.postMessage() sends a message, which can be of any kind of Object, to each ...
- Web/API/Broadcast_Channel_API The Broadcast Channel API allows simple communication between browsing contexts (that is ...
- Web/API/BudgetService The BudgetService interface of the Web Budget API provides a programmatic interface to the user ...
- Web/API/BudgetService/getBudget The getBudget() property of the BudgetService interface returns a Promise that resolves to an ...
- Web/API/BudgetService/getCost The getCost() property of the BudgetService interface returns a Promise that resolves to a ...
- Web/API/BudgetService/reserve The reserve() property of the BudgetService interface returns a Promise that resolves to a ...
- Web/API/BudgetState The BudgetState interface of the the Web Budget API provides the amount of the user agent's ...
- Web/API/BudgetState/budgetAt The budgetAt read-only property of the BudgetState interface returns the anticipated processing ...
- Web/API/BudgetState/time The time read-only property of the BudgetState interface returns a timestamp at which the ...
- Web/API/BufferSource BufferSource is a typedef used to represent objects that are either themselves an ArrayBuffer, ...
- Web/API/ByteLengthQueuingStrategy The ByteLengthQueuingStrategy interface of the the Streams API provides a built-in byte length ...
- Web/API/ByteLengthQueuingStrategy/ByteLengthQueuingStrategy The ByteLengthQueuingStrategy() constructor creates and returns a ByteLengthQueuingStrategy() ...
- Web/API/ByteLengthQueuingStrategy/size The size() method of the ByteLengthQueueingStrategy interface returns the given chunk’s ...
- Web/API/ByteString ByteString is a UTF-8 String that corresponds to the set of all possible sequences of bytes. ...
- Web/API/Cache The Cache interface provides a storage mechanism for Request / Response object pairs that are ...
- Web/API/Cache/add The add() method of the Cache interface takes a URL, retrieves it, and adds the resulting ...
- Web/API/Cache/addAll The addAll() method of the Cache interface takes an array of URLs, retrieves them, and adds the ...
- Web/API/Cache/delete The delete() method of the Cache interface finds the Cache entry whose key is the request, and ...
- Web/API/Cache/keys The keys() method of the Cache interface returns a Promise that resolves to an array of Cache keys.
- Web/API/Cache/match The match() method of the Cache interface returns a Promise that resolves to the Response ...
- Web/API/Cache/matchAll The matchAll() method of the Cache interface returns a Promise that resolves to an array of all ...
- Web/API/Cache/put The put() method of the Cache interface allows key/value pairs to be added to the current Cache ...
- Web/API/CacheStorage The CacheStorage interface represents the storage for Cache objects.
- Web/API/CacheStorage/delete The delete () method of the CacheStorage interface finds the Cache object matching the ...
- Web/API/CacheStorage/has The has() method of the CacheStorage interface returns a Promise that resolves to true if a ...
- Web/API/CacheStorage/keys The keys () method of the CacheStorage interface returns a Promise that will resolve with an ...
- Web/API/CacheStorage/match The match() method of the CacheStorage interface (available globally as caches) checks if a ...
- Web/API/CacheStorage/open The open() method of the CacheStorage interface returns a Promise that resolves to the Cache ...
- Web/API/CanvasGradient The CanvasGradient interface represents an opaque object describing a gradient. It is returned ...
- Web/API/CanvasGradient/addColorStop The CanvasGradient.addColorStop() method adds a new stop, defined by an offset and a color, to ...
- Web/API/CanvasImageSource CanvasImageSource is a helper type representing any objects of one of the following types:
- Web/API/CanvasPattern The CanvasPattern interface represents an opaque object describing a pattern, based on an image, ...
- Web/API/CanvasPattern/setTransform The CanvasPattern.setTransform() method uses an SVGMatrix object as the pattern's transformation ...
- Web/API/CanvasRenderingContext2D To get an object of this interface, call getContext() on a canvas element, supplying "2d" as the ...
- Web/API/CanvasRenderingContext2D/addHitRegion The CanvasRenderingContext2D.addHitRegion() method of the Canvas 2D API adds a hit region to the ...
- Web/API/CanvasRenderingContext2D/arc The CanvasRenderingContext2D.arc() method of the Canvas 2D API adds an arc to the path which is ...
- Web/API/CanvasRenderingContext2D/arcTo The CanvasRenderingContext2D.arcTo() method of the Canvas 2D API adds an arc to the path with ...
- Web/API/CanvasRenderingContext2D/beginPath The CanvasRenderingContext2D.beginPath() method of the Canvas 2D API starts a new path by ...
- Web/API/CanvasRenderingContext2D/bezierCurveTo The CanvasRenderingContext2D.bezierCurveTo() method of the Canvas 2D API adds a cubic Bézier ...
- Web/API/CanvasRenderingContext2D/canvas The CanvasRenderingContext2D.canvas property is a read-only reference to the HTMLCanvasElement ...
- Web/API/CanvasRenderingContext2D/clearHitRegions The CanvasRenderingContext2D.clearHitRegions() method of the Canvas 2D API removes all hit ...
- Web/API/CanvasRenderingContext2D/clearRect The CanvasRenderingContext2D.clearRect() method of the Canvas 2D API sets all pixels in the ...
- Web/API/CanvasRenderingContext2D/clip The CanvasRenderingContext2D.clip() method of the Canvas 2D API turns the path currently being ...
- Web/API/CanvasRenderingContext2D/closePath The CanvasRenderingContext2D.closePath() method of the Canvas 2D API causes the point of the pen ...
- Web/API/CanvasRenderingContext2D/createImageData The CanvasRenderingContext2.createImageData() method of the Canvas 2D API creates a new, blank ...
- Web/API/CanvasRenderingContext2D/createLinearGradient The CanvasRenderingContext2D.createLinearGradient() method of the Canvas 2D API creates a ...
- Web/API/CanvasRenderingContext2D/createPattern The CanvasRenderingContext2D.createPattern() method of the Canvas 2D API creates a pattern using ...
- Web/API/CanvasRenderingContext2D/createRadialGradient The CanvasRenderingContext2D.createRadialGradient() method of the Canvas 2D API creates a radial ...
- Web/API/CanvasRenderingContext2D/currentTransform The CanvasRenderingContext2D.currentTransform property of the Canvas 2D API returns or sets a ...
- Web/API/CanvasRenderingContext2D/direction The CanvasRenderingContext2D.direction property of the Canvas 2D API specifies the current text ...
- Web/API/CanvasRenderingContext2D/drawFocusIfNeeded The CanvasRenderingContext2D.drawFocusIfNeeded() method of the Canvas 2D API draws a focus ring ...
- Web/API/CanvasRenderingContext2D/drawImage The CanvasRenderingContext2D.drawImage() method of the Canvas 2D API provides different ways to ...
- Web/API/CanvasRenderingContext2D/drawWidgetAsOnScreen The non-standard and internal only CanvasRenderingContext2D.drawWidgetAsOnScreen() method of the ...
- Web/API/CanvasRenderingContext2D/drawWindow The non-standard and internal only CanvasRenderingContext2D.drawWindow() method of the Canvas 2D ...
- Web/API/CanvasRenderingContext2D/ellipse The CanvasRenderingContext2D.ellipse() method of the Canvas 2D API adds an ellipse to the path ...
- Web/API/CanvasRenderingContext2D/fill The CanvasRenderingContext2D.fill() method of the Canvas 2D API fills the current or given path ...
- Web/API/CanvasRenderingContext2D/fillRect The CanvasRenderingContext2D.fillRect() method of the Canvas 2D API draws a filled rectangle ...
- Web/API/CanvasRenderingContext2D/fillStyle The CanvasRenderingContext2D.fillStyle property of the Canvas 2D API specifies the color or ...
- Web/API/CanvasRenderingContext2D/fillText The CanvasRenderingContext2D method fillText(), part of the Canvas 2D API, draws a text string ...
- Web/API/CanvasRenderingContext2D/filter The CanvasRenderingContext2D.filter property of the Canvas 2D API provides filter effects like ...
- Web/API/CanvasRenderingContext2D/font The CanvasRenderingContext2D.font property of the Canvas 2D API specifies the current text style ...
- Web/API/CanvasRenderingContext2D/getImageData The CanvasRenderingContext2D.getImageData() method of the Canvas 2D API returns an ImageData ...
- Web/API/CanvasRenderingContext2D/getLineDash The CanvasRenderingContext2D.getLineDash() method of the Canvas 2D API gets the current line ...
- Web/API/CanvasRenderingContext2D/globalAlpha The CanvasRenderingContext2D.globalAlpha property of the Canvas 2D API specifies the alpha value ...
- Web/API/CanvasRenderingContext2D/globalCompositeOperation The CanvasRenderingContext2D.globalCompositeOperation property of the Canvas 2D API sets the ...
- Web/API/CanvasRenderingContext2D/imageSmoothingEnabled The CanvasRenderingContext2D.imageSmoothingEnabled property of the Canvas 2D API can be set to ...
- Web/API/CanvasRenderingContext2D/imageSmoothingQuality The CanvasRenderingContext2D.imageSmoothingQuality property of the Canvas 2D API allows you to ...
- Web/API/CanvasRenderingContext2D/isPointInPath The CanvasRenderingContext2D.isPointInPath() method of the Canvas 2D API reports whether or not ...
- Web/API/CanvasRenderingContext2D/isPointInStroke The CanvasRenderingContext2D.isPointInStroke() method of the Canvas 2D API reports whether or ...
- Web/API/CanvasRenderingContext2D/lineCap The CanvasRenderingContext2D.lineCap property of the Canvas 2D API determines how the end points ...
- Web/API/CanvasRenderingContext2D/lineDashOffset The CanvasRenderingContext2D.lineDashOffset property of the Canvas 2D API sets the line dash ...
- Web/API/CanvasRenderingContext2D/lineJoin The CanvasRenderingContext2D.lineJoin property of the Canvas 2D API determines how two ...
- Web/API/CanvasRenderingContext2D/lineTo The CanvasRenderingContext2D.lineTo() method of the Canvas 2D API connects the last point in the ...
- Web/API/CanvasRenderingContext2D/lineWidth The CanvasRenderingContext2D.lineWidth property of the Canvas 2D API sets the thickness of lines ...
- Web/API/CanvasRenderingContext2D/measureText The CanvasRenderingContext2D.measureText() method returns a TextMetrics object that contains ...
- Web/API/CanvasRenderingContext2D/miterLimit The CanvasRenderingContext2D.miterLimit property of the Canvas 2D API sets the miter limit ratio ...
- Web/API/CanvasRenderingContext2D/moveTo The CanvasRenderingContext2D.moveTo() method of the Canvas 2D API moves the starting point of a ...
- Web/API/CanvasRenderingContext2D/putImageData The CanvasRenderingContext2D.putImageData() method of the Canvas 2D API paints data from the ...
- Web/API/CanvasRenderingContext2D/quadraticCurveTo The CanvasRenderingContext2D.quadraticCurveTo() method of the Canvas 2D API adds a quadratic ...
- Web/API/CanvasRenderingContext2D/rect The CanvasRenderingContext2D.rect() method of the Canvas 2D API creates a path for a rectangle ...
- Web/API/CanvasRenderingContext2D/removeHitRegion The CanvasRenderingContext2D.removeHitRegion() method of the Canvas 2D API removes a given hit ...
- Web/API/CanvasRenderingContext2D/restore The CanvasRenderingContext2D.restore() method of the Canvas 2D API restores the most recently ...