InkStrokeDetail

Detailed ink stroke information

DesktopOperating SystemUWPWin32Windows

Properties

Name Type Description
id string
points array
boundingRect object
drawingAttributes object
strokeDuration string Duration of the stroke
View JSON Schema on GitHub

JSON Schema

microsoft-windows-10-inkstrokedetail-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/InkStrokeDetail",
  "title": "InkStrokeDetail",
  "type": "object",
  "description": "Detailed ink stroke information",
  "properties": {
    "id": {
      "type": "string"
    },
    "points": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/InkPoint"
      }
    },
    "boundingRect": {
      "$ref": "#/components/schemas/BoundingRect"
    },
    "drawingAttributes": {
      "$ref": "#/components/schemas/InkDrawingAttributes"
    },
    "strokeDuration": {
      "type": "string",
      "description": "Duration of the stroke"
    }
  }
}