InkStroke

An ink stroke (InkStroke class)

DesktopOperating SystemUWPWin32Windows

Properties

Name Type Description
id string Unique stroke identifier
pointCount integer Number of ink points in the stroke
boundingRect object
drawingAttributes object
View JSON Schema on GitHub

JSON Schema

microsoft-windows-10-inkstroke-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/InkStroke",
  "title": "InkStroke",
  "type": "object",
  "description": "An ink stroke (InkStroke class)",
  "properties": {
    "id": {
      "type": "string",
      "description": "Unique stroke identifier"
    },
    "pointCount": {
      "type": "integer",
      "description": "Number of ink points in the stroke"
    },
    "boundingRect": {
      "$ref": "#/components/schemas/BoundingRect"
    },
    "drawingAttributes": {
      "$ref": "#/components/schemas/InkDrawingAttributes"
    }
  },
  "required": [
    "id"
  ]
}