LayoutMode Property (Designer)
Gets or sets the value that determines how the end user can lay out controls on the report design surface.
'Declaration
Public Property LayoutMode As LayoutMode
Property Value
The layout mode as defined by the
LayoutMode enumeration.
private void designer1_Load(object sender, System.EventArgs e)
{
this.designer1.LayoutMode = GrapeCity.ActiveReports.Design.LayoutMode.SnapGrid;
}
Private Sub Designer1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Designer1.Load
Me.Designer1.LayoutMode = GrapeCity.ActiveReports.Design.LayoutMode.SnapGrid
End Sub