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 December 10, 2003 03:01 PM UTC
This is hard coded at Size(370, 240).
If you wanted to change this, you could derive GridRichTextBoxCellModel and GridRichTextBoxCellRenderer. In GridRichTextBoxCellControl, override the CreateRenderer method to create a renderer from your derived class. In your derived GridRichTextBoxCellRenderer, override DropDownContainerShowingDropDown, and set DropDownContainer size at that point.
There is actually an event that is fired from teh baseclass call (CurrentCellShowingDropDown) that has e.Size as an argument. So, in your override, you could call the baseclass, and then use e.Size to set the DropDownContainer.Size. This would let you subscribe to an event to set the size.