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",
"IsCreatable": true,
"Attributes": {
"Content": "Content"
"Content": "object"
}
},
"ProgressBar": {
@ -153,6 +153,24 @@
"Viewport": "Rect",
"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": {
@ -165,11 +183,12 @@
},
"int": {},
"double": {},
"object": {},
"Thickness": {},
"Rect": {},
"Point": {},
"Brush": {},
"Color": {},
"Content": {},
"ImageSource": {},
"Visibility": {
"Values": [
@ -298,6 +317,19 @@
"Absolute",
"RelativeToBoundingBox"
]
},
"ColorInterpolationMode": {
"Values": [
"ScRgbLinearInterpolation",
"SRgbLinearInterpolation"
]
},
"GradientSpreadMethod": {
"Values": [
"Pad",
"Reflect",
"Repeat"
]
}
}
}