Skip to main content

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

XRPictureBox.ProcessNullValues Property

Specifies how to process a XRPictureBox control with null values. See the ValueSuppressType enumeration description for information on how different modes process null values.

Namespace: DevExpress.XtraReports.UI

Assembly: DevExpress.XtraReports.v24.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

Leaves all controls with null values as is.

Suppress

Removes all controls with null values and substitutes them with blank space.

SuppressAndShrink

Removes all controls with null values and shrinks the blank space between them. Note that you cannot use this mode for intersecting controls and vertical bands.

MergeByValue

Obsolete. This field is obsolete (this API is now obsolete).

MergeByTag

Obsolete. This field is obsolete (this API is now obsolete).

#Remarks

The XRPictureBox control is considered to have an empty value if both its ImageSource and ImageUrl properties return null (Nothing in Visual Basic).

See Also