CompositionEffect

DesktopOperating SystemUWPWin32Windows

Properties

Name Type Description
id string
effectType string Type of effect
View JSON Schema on GitHub

JSON Schema

microsoft-windows-10-compositioneffect-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/CompositionEffect",
  "title": "CompositionEffect",
  "type": "object",
  "properties": {
    "id": {
      "type": "string"
    },
    "effectType": {
      "type": "string",
      "enum": [
        "GaussianBlur",
        "Saturation",
        "Grayscale",
        "Invert",
        "Sepia",
        "TemperatureAndTint",
        "Composite"
      ],
      "description": "Type of effect"
    }
  }
}