Return Value
the grid that is the primary object in this group
protected virtual GoGrid CreateGrid() { GoGrid grid = new GoGrid(); grid.Selectable = false; grid.CellSize = new SizeF(25, 25); grid.OriginRelative = false; grid.LineDashStyle = DashStyle.Custom; grid.MajorLineColor = Color.LightGray; grid.MajorLineFrequency = new Size(4, 4); grid.Style = GoViewGridStyle.None; return grid; }