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

ValidateCellEventArgs.IsValid Property

Gets or sets a value specifying whether the value is valid.

Namespace: DevExpress.Xpf.PropertyGrid

Assembly: DevExpress.Xpf.PropertyGrid.v18.2.dll

Declaration

public bool IsValid { get; set; }

Property Value

Type Description
Boolean

true, if the value is valid; otherwise, false.

Remarks

Use the IsValid property to specify whether a new value meets your validation criteria, and can be posted to the PropertyGridControl.

Set the IsValid property to false when the entered value is not valid. In this instance, this value will not be posted to the PropertyGrid and an error icon defined by the ValidateCellEventArgs.ErrorType property, will be displayed within the PropertyGrid. Use the ValidationEventArgs.ErrorContent property to specify the error tooltip.

See Also