Posted 16 February 2022, 11:23 pm EST
Hello, allIn the activeX component there was a property mergecell, which told the user if the cell is merged. How can I tell the same thing in WinForms?
Thank you,
Arcady Abramov
Forums Home / ComponentOne / WinForms Edition Topics
Posted by: arcady on 16 February 2022, 11:23 pm EST
Posted 16 February 2022, 11:23 pm EST
Hello, allReplied 17 February 2022, 5:56 pm EST
Hi,private bool IsCellMerged(int row, int col)
{
C1.Win.C1FlexGrid.CellRange cr = c1FlexGrid1.GetMergedRange(row, col);
return !cr.IsSingleCell;
}
Replied 19 February 2022, 3:30 pm EST
Thank you,