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.
ADAdministrator Syncfusion Team May 5, 2005 07:03 PM UTC
That is correct, and I now have my answer. However, what threw me off and led me to asking the question is that the following line:
this.gridControl1.HScrollBehavior = Syncfusion.Windows.Forms.Grid.GridScrollbarMode.Disabled;
must be called after:
this.Controls.Add(this.gridControl1);
When you set the HScrollBehavior in the designer to be disabled, it won''t disable the scrollbar since the designer generated code disables the scrollbar before it adds the grid control.
I''m sure you now understand why I was asking such a simple question.