Skip to main content
A newer version of this page is available. .
.NET Framework 4.5.2+
Row

ValueObject.IsNullOrEmpty(ValueObject) Method

Determines whether the specified object is null or has an empty value.

Namespace: DevExpress.Spreadsheet

Assembly: DevExpress.Spreadsheet.v19.1.Core.dll

Declaration

public static bool IsNullOrEmpty(
    ValueObject valueObject
)

Parameters

Name Type Description
valueObject ValueObject

A ValueObject instance to check.

Returns

Type Description
Boolean

true, if the object is null or has an empty value; otherwise, false.

Remarks

To check whether an object is empty, use the ValueObject.IsEmpty property.

See Also