Skip to main content
Tab

ASPxVerticalGridSettings.RecordWidth Property

Specifies a record’s width.

Namespace: DevExpress.Web

Assembly: DevExpress.Web.v24.1.dll

Declaration

[DefaultValue(0)]
public int RecordWidth { get; set; }

Property Value

Type Default Description
Int32 0

A record width, in pixels.

Property Paths

You can access this nested property as listed below:

Library Object Type Path to RecordWidth
ASP.NET Web Forms Controls ASPxVerticalGrid
.Settings .RecordWidth
ASP.NET MVC Extensions VerticalGridSettings
.Settings .RecordWidth

Remarks

The RecordWidth property specifies the width of a ASPxVerticalGrid record.

<dx:ASPxVerticalGrid ID="ASPxVerticalGrid1" runat="server" ...>
    <!-- ... -->
    <Settings RecordWidth="200" />
    <SettingsEditing Mode="Batch" />
</dx:ASPxVerticalGrid>

Note

The RecordWidth property affects ASPxVerticalGrid when the batch edit mode or horizontal scrolling is enabled.

See Also