xtrareports-devexpress-dot-xtrareports-dot-ui-dot-xtrareport-0b7d5439.md
Gets or sets a value indicating whether to draw the snap grid over the report surface.
Namespace : DevExpress.XtraReports.UI
Assembly : DevExpress.XtraReports.v25.2.dll
NuGet Package : DevExpress.Reporting.Core
[DefaultValue(true)]
[SRCategory(ReportStringId.CatDesign)]
public bool DrawGrid { get; set; }
<DefaultValue(True)>
<SRCategory(ReportStringId.CatDesign)>
Public Property DrawGrid As Boolean
| Type | Default | Description |
|---|---|---|
| Boolean | true |
true , to display the snap grid; otherwise, false.
|
By default, when a report is being edited, it is lined up by the snap grid. This helps to establish the distance between report elements and precisely align them to each other.
The DrawGrid property allows you to show or hide the snap grid as shown in the following image.
| DrawGrid = true | DrawGrid = false |
|---|---|
To specify whether to snap controls to the snap grid, use the XtraReport.SnappingMode property. To change the snap grid dimensions, use the XtraReport.SnapGridSize property.
Note
You can set the DrawGrid property globally, so that all the newly created reports have this property set to the required value. For this purpose, use the Report Designer Options dialog available within the XtraReports menu.
See Also