Skip to main content
Row

ValueObject.IsNullOrEmpty(ValueObject) Method

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

Namespace: DevExpress.Spreadsheet

Assembly: DevExpress.Spreadsheet.v23.2.Core.dll

NuGet Package: DevExpress.Spreadsheet.Core

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