This commit is contained in:
@@ -1819,13 +1819,21 @@ namespace Volian.Controls.Library
|
||||
#region Table Grid Merge/Split
|
||||
private void btnTblDgnSplitCells_ToRows_Click(object sender, EventArgs e)
|
||||
{
|
||||
// without the BeginUpdate/EndUpdate, you will see the table jump around while
|
||||
// it is being adjusted
|
||||
MyFlexGrid.BeginUpdate();
|
||||
MyFlexGrid.SplitSelection(false);
|
||||
MyFlexGrid.EndUpdate();
|
||||
}
|
||||
#endregion
|
||||
|
||||
private void btnTblDgnSplitCellsToCols_Click(object sender, EventArgs e)
|
||||
{
|
||||
// without the BeginUpdate/EndUpdate, you will see the table jump around while
|
||||
// it is being adjusted
|
||||
MyFlexGrid.BeginUpdate();
|
||||
MyFlexGrid.SplitSelection(true);
|
||||
MyFlexGrid.EndUpdate();
|
||||
}
|
||||
|
||||
private void btnTblDgnMergeCells_Click(object sender, EventArgs e)
|
||||
|
Reference in New Issue
Block a user