BoundingRect

DesktopOperating SystemUWPWin32Windows

Properties

Name Type Description
x number
y number
width number
height number
View JSON Schema on GitHub

JSON Schema

microsoft-windows-10-boundingrect-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/BoundingRect",
  "title": "BoundingRect",
  "type": "object",
  "properties": {
    "x": {
      "type": "number",
      "format": "float"
    },
    "y": {
      "type": "number",
      "format": "float"
    },
    "width": {
      "type": "number",
      "format": "float"
    },
    "height": {
      "type": "number",
      "format": "float"
    }
  }
}