Gets or sets how images should be the scaled to fit within the field area.

Namespace:  C1.C1Report
Assembly:  C1.C1Report.2 (in C1.C1Report.2.dll)

Syntax

C#
[DefaultValueAttribute(PictureScaleEnum.Clip)]
public PictureScaleEnum PictureScale { get; set; }
Visual Basic
<DefaultValueAttribute(PictureScaleEnum.Clip)> _
Public Property PictureScale As PictureScaleEnum
	Get
	Set

Remarks

Depending on the setting of this property, images may be clipped, stretched, scaled (which preserves the image's aspect ratio), tiled, or hidden.

PictureScale works with the PictureAlign property so you can control image scaling and alignment independently.

The default value for this property is PictureScaleEnum.Clip.

See Also