windowsforms-devexpress-dot-xtraverticalgrid-dot-rows-dot-rowproperties-366c962e.md
Gets or sets whether the current editor row is read only.
Namespace : DevExpress.XtraVerticalGrid.Rows
Assembly : DevExpress.XtraVerticalGrid.v25.2.dll
NuGet Packages : DevExpress.Win.Navigation, DevExpress.Win.VerticalGrid
[DefaultValue(null)]
[XtraSerializableProperty]
public virtual bool? ReadOnly { get; set; }
<DefaultValue(Nothing)>
<XtraSerializableProperty>
Public Overridable Property [ReadOnly] As Boolean?
| Type | Default | Description |
|---|---|---|
| Nullable<Boolean> | null |
true if the current editor row is read only ; otherwise, false.
|
The ReadOnly property specifies whether the editor row is editable. If the ReadOnly property is set to null , the behavior depends on the RowProperties.IsSourceReadOnly property value. Use the ReadOnly property to specify whether the current EditorRow is read only.
If the RowProperties.IsSourceReadOnly property returns true , an end-user cannot change a row’s value, even if the ReadOnly property is set to false.
See Also