LGUI2:imagebox
Jump to navigation
Jump to search
A LavishGUI 2 imagebox element has a standard Border and is tailored to display and size to an image.
Defining an imagebox element
An imagebox element is a Element with the addition of an "imageBrush" property and standard Border properties.
imagebox element properties | |
---|---|
imageBrush | A Brush definition specifying the brush for the featured image |
borderBrush | A Brush definition specifying the brush for the standard Border |
backgroundBrush | A Brush definition specifying the brush for the background inside the Border |
borderThickness | A Thickness definition specifying the thickness for the standard Border |
Examples
- An imagebox element, with a 1 pixel margin around an image from a file
{ "type": "imagebox", "margin": [ 1, 1, 1, 1 ], "imageBrush": { "color": [ 1.0, 1.0, 1.0 ], "imageFile": "My image.png" } },