CreateInkStrokeRequest

DesktopOperating SystemUWPWin32Windows

Properties

Name Type Description
points array Ordered list of ink points
drawingAttributes object
View JSON Schema on GitHub

JSON Schema

microsoft-windows-10-createinkstrokerequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/CreateInkStrokeRequest",
  "title": "CreateInkStrokeRequest",
  "type": "object",
  "properties": {
    "points": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/InkPoint"
      },
      "description": "Ordered list of ink points"
    },
    "drawingAttributes": {
      "$ref": "#/components/schemas/InkDrawingAttributes"
    }
  },
  "required": [
    "points"
  ]
}