The Syncfusion native Blazor components library offers 70+ UI and Data Viz web controls that are responsive and lightweight for building modern web apps.
.NET PDF framework is a high-performance and comprehensive library used to create, read, merge, split, secure, edit, view, and review PDF files in C#/VB.NET.
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.
ADAdministrator 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