update schema

This commit is contained in:
bluepilledgreat 2024-10-20 21:43:19 +01:00
parent cb70e8ec0c
commit fb7e14bf64

View File

@ -45,7 +45,7 @@
"SuperClass": "Control", "SuperClass": "Control",
"IsCreatable": true, "IsCreatable": true,
"Attributes": { "Attributes": {
"Content": "Content" "Content": "object"
} }
}, },
"ProgressBar": { "ProgressBar": {
@ -153,6 +153,24 @@
"Viewport": "Rect", "Viewport": "Rect",
"ImageSource": "ImageSource" "ImageSource": "ImageSource"
} }
},
"LinearGradientBrush": {
"SuperClass": "Brush",
"IsCreatable": true,
"Attributes": {
"StartPoint": "Point",
"EndPoint": "Point",
"ColorInterpolationMode": "ColorInterpolationMode",
"MappingMode": "BrushMappingMode",
"SpreadMethod": "GradientSpreadMethod"
}
},
"GradientStop": {
"IsCreatable": true,
"Attributes": {
"Color": "Color",
"Offset": "double"
}
} }
}, },
"Types": { "Types": {
@ -165,11 +183,12 @@
}, },
"int": {}, "int": {},
"double": {}, "double": {},
"object": {},
"Thickness": {}, "Thickness": {},
"Rect": {}, "Rect": {},
"Point": {},
"Brush": {}, "Brush": {},
"Color": {}, "Color": {},
"Content": {},
"ImageSource": {}, "ImageSource": {},
"Visibility": { "Visibility": {
"Values": [ "Values": [
@ -298,6 +317,19 @@
"Absolute", "Absolute",
"RelativeToBoundingBox" "RelativeToBoundingBox"
] ]
},
"ColorInterpolationMode": {
"Values": [
"ScRgbLinearInterpolation",
"SRgbLinearInterpolation"
]
},
"GradientSpreadMethod": {
"Values": [
"Pad",
"Reflect",
"Repeat"
]
} }
} }
} }