-
Notifications
You must be signed in to change notification settings - Fork 20
Expand file tree
/
Copy pathBackgroundImage.xml
More file actions
43 lines (43 loc) · 2.46 KB
/
BackgroundImage.xml
File metadata and controls
43 lines (43 loc) · 2.46 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
<?xml version="1.0" encoding="utf-8" ?>
<widget id="com.mendix.widget.native.backgroundimage.BackgroundImage" supportedPlatform="Native" offlineCapable="true" pluginWidget="true" xmlns="http://www.mendix.com/widget/1.0/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.mendix.com/widget/1.0/ ../../../node_modules/mendix/custom_widget.xsd">
<name>Background image</name>
<description />
<studioProCategory>Images, videos & files</studioProCategory>
<studioCategory>Images, videos & files</studioCategory>
<properties>
<propertyGroup caption="General">
<propertyGroup caption="General">
<property key="image" type="image">
<caption>Image</caption>
<description />
</property>
<property key="defaultImage" type="image" required="false">
<caption>Default image</caption>
<description/>
</property>
<property key="resizeMode" type="enumeration" defaultValue="cover">
<caption>Resize mode</caption>
<description>Cover: scale to cover space. Contain: scale to fit in space. Stretch: stretched to fit space. Center: centered and fit in space. For more information see the help page.</description>
<enumerationValues>
<enumerationValue key="cover">Cover</enumerationValue>
<enumerationValue key="contain">Contain</enumerationValue>
<enumerationValue key="stretch">Stretch</enumerationValue>
<enumerationValue key="center">Center</enumerationValue>
</enumerationValues>
</property>
<property key="opacity" type="decimal" defaultValue="1.0">
<caption>Opacity</caption>
<description>Takes a value from 0.0 - 1.0. The lower the value, the more transparent.</description>
</property>
<property key="content" type="widgets" required="false">
<caption>Content</caption>
<description />
</property>
</propertyGroup>
<propertyGroup caption="Common">
<systemProperty key="Name" />
<systemProperty key="Visibility" />
</propertyGroup>
</propertyGroup>
</properties>
</widget>