Skip to main content

RowAllowEventArgs.Allow Property

Gets or sets a value specifying whether the current operation (group row expanding or collapsing) is allowed.

Namespace: DevExpress.Mobile.DataGrid

Assembly: DevExpress.Mobile.Grid.v18.2.dll

Declaration

public bool Allow { get; set; }

Property Value

Type Description
Boolean

true, if the operation is allowed; otherwise, false.

Remarks

Important

This documentation topic describes legacy technology. We no longer develop new functionality for the GridControl and suggest that you use the new DataGridView control instead.

By default, the operation is allowed (so, the property value is set to true). To disable group row expanding or collapsing, set the Allow property to false in the GridControl.GroupRowExpanding or GridControl.GroupRowCollapsing event handler respectively.

See Also