-
-
Notifications
You must be signed in to change notification settings - Fork 421
Closed
Description
Describe the bug
View_AllowCellTextOverflow does not seem to work
To Reproduce
private void Form1_Load(object sender, EventArgs e)
{
var grid = new unvell.ReoGrid.ReoGridControl()
{
Dock = DockStyle.Fill,
};
grid.CurrentWorksheet.DisableSettings(WorksheetSettings.View_AllowCellTextOverflow);
grid.CurrentWorksheet["A1"] = "asdf asdf asdf asdf asdf asdf asdf asdf";
this.Controls.Add(grid); // add to form or panel
}
Expected behavior
Text in cell should not overflow
Edition
Which edition of ReoGrid do you using?
- Windows Form (2.1.0.0 from nuget)
Environment (please complete the following information):
- OS: Windows 10
- Language of OS: English
jingwood