update schema

This commit is contained in:
bluepilledgreat 2024-10-20 19:12:00 +01:00
parent 91a3a58d21
commit eb4eda5029

View File

@ -126,13 +126,20 @@
"Y": "double" "Y": "double"
} }
}, },
"RenderTransform": { "ImageBrush": {
"IsCreatable": true, "IsCreatable": true,
"Attributes": {} "Attributes": {
}, "AlignmentX": "AlignmentX",
"Content": { "AlignmentY": "AlignmentY",
"IsCreatable": true, "Opacity": "double",
"Attributes": {} "Stretch": "Stretch",
"TileMode": "TileMode",
"ViewboxUnits": "BrushMappingMode",
"ViewportUnits": "BrushMappingMode",
"Viewbox": "Rect",
"Viewport": "Rect",
"ImageSource": "Source"
}
} }
}, },
"Types": { "Types": {
@ -146,6 +153,7 @@
"int": {}, "int": {},
"double": {}, "double": {},
"Thickness": {}, "Thickness": {},
"Rect": {},
"Brush": {}, "Brush": {},
"Content": {}, "Content": {},
"Visibility": { "Visibility": {
@ -246,6 +254,35 @@
"DownOnly", "DownOnly",
"Both" "Both"
] ]
},
"AlignmentX": {
"Values": [
"Left",
"Center",
"Right"
]
},
"AlignmentY": {
"Values": [
"Top",
"Center",
"Bottom"
]
},
"TileMode": {
"Values": [
"None",
"FlipX",
"FlipY",
"FlipXY",
"Tile"
]
},
"BrushMappingMode": {
"Values": [
"Absolute",
"RelativeToBoundingBox"
]
} }
} }
} }