Requested grid feature

Add some constructors to Syncfusion.Windows.Forms.Grid.GridRangeInfo to initialize the values, so you can add selections to the grid programmaticaly with one line: syncGrid.Selections.Add(new GridRangeInfo(GridRangeType.Rows, 0, 100)); //etc.

1 Reply

AD Administrator Syncfusion Team May 28, 2003 06:52 PM UTC

Hi Chris, you should use these constructors instead: GridRangeInfo rows = GridRangeInfo.Rows(0, 100); or cells = GridRangeInfo.Cells(0,1,2,5); etc. There are ctors for Cell, Cells, Row, Rows, Col, Cols and Table. Stefan

Loader.
Up arrow icon