ActiveReports 13
GridY Property
Example 

GrapeCity.ActiveReports.Design.Win Assembly > GrapeCity.ActiveReports.Design Namespace > Designer Class : GridY Property
Determines how coarse the designer grid should be.
Syntax
'Declaration
 
Public Property GridY As Integer
public int GridY {get; set;}

Property Value

An integer value that represents the number of vertical grid points per ruler unit.
Example
private void designer1_Load(object sender, System.EventArgs e)
{
    this.designer1.DrawGrid = true;
    this.designer1.GridX = 16;
    this.designer1.GridY = 16;
}
Private Sub Designer1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Designer1.Load
    Me.Designer1.DrawGrid = True
    Me.Designer1.GridX = 16
    Me.Designer1.GridY = 16
End Sub
See Also

Reference

Designer Class
Designer Members