Sizings Enum
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Specifies the behavior of an Image if the actual image does not fit within the specified size of the image as denoted by Microsoft.ReportingServices.RdlObjectModel.Image.Height and Microsoft.ReportingServices.RdlObjectModel.Image.Width.
public enum class Sizings
public enum Sizings
type Sizings =
Public Enum Sizings
- Inheritance
-
Sizings
Fields
Name | Value | Description |
---|---|---|
AutoSize | 0 | Specifies that the border of the Image should grow/shrink to accommodate the dimensions of the actual image. |
Fit | 1 | Specifies that the actual image is resized to exactly match both the Height and Width dimensions. |
FitProportional | 2 | Specifies that the actual image should resize to fit within the Image dimensions, while preserving aspect ratio. |
Clip | 3 | Specifies that the actual image should clip to fit the dimensions of the Image. |