ImageBrushSize Enumeration |
How the image brush will size itself.
Namespace:
Dundas.BI.Entities.Views
Assembly:
Dundas.BI.Core (in Dundas.BI.Core.dll) Version: 2.0.0.0 (24.3.0.1000)
Syntax public enum ImageBrushSize
Public Enumeration ImageBrushSize
public enum class ImageBrushSize
Members
| Member name | Value | Description |
---|
| Auto | 0 |
Default value. The background-image contains its width and height.
|
| Cover | 1 |
Scale the background image to be as large as possible so that the background area is completely covered by the background image.
Some parts of the background image may not be in view within the background positioning area.
|
| Contain | 2 |
Scale the image to the largest size such that both its width and its height can fit inside the content area.
|
| Fill | 3 |
Scale the image to the largest size to fill the container without regard to aspect ratio.
|
See Also