XRBarCode.ProcessNullValues Property
Specifies how to process a XRBarCode 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.v26.1.dll
Declaration
[Browsable(true)]
public override ValueSuppressType ProcessNullValues { get; set; }
<Browsable(True)>
Public Overrides Property ProcessNullValues As ValueSuppressType
Property 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).
|
The XRBarCode control has a null value if its Text property returns null (Nothing in Visual Basic).
See Also