Skip to main content
A newer version of this page is available. .

XRPictureBox.ProcessNullValues Property

Specifies how to process a Picture Box control receiving a null value from a connected data source.

Namespace: DevExpress.XtraReports.UI

Assembly: DevExpress.XtraReports.v17.2.dll

NuGet Package: DevExpress.Reporting.Core

Declaration

[Browsable(true)]
public override ValueSuppressType ProcessNullValues { get; set; }

Property Value

Type Description
ValueSuppressType

A ValueSuppressType enumeration value.

Available values:

Name Description
Leave

A control is always printed.

Suppress

If a control receives a null value, a blank space is printed instead.

SuppressAndShrink

If a control receives a null value, it is not printed (without adding blank space in its place).

This setting has no effect on intersecting controls.

MergeByValue

Obsolete. This API is obsolete now.

MergeByTag

Obsolete. This API is obsolete now.

Remarks

A Picture Box control is considered to have an empty value, if both its XRPictureBox.Image and XRPictureBox.ImageUrl properties return null (Nothing in Visual Basic).

See Also