This commit is contained in:
parent
3fe2d27771
commit
8caee80740
@ -492,7 +492,13 @@ namespace Volian.Controls.Library
|
|||||||
this[row, col] = str;
|
this[row, col] = str;
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
public void ClearSelectedCellText()
|
||||||
|
{
|
||||||
|
CellRange cr = this.Selection;
|
||||||
|
DialogResult dr = MessageBox.Show("Clear Selected cells?", "Clear", MessageBoxButtons.YesNo);
|
||||||
|
if (dr == DialogResult.Yes)
|
||||||
|
cr.Clear(ClearFlags.Content);
|
||||||
|
}
|
||||||
#endregion //Cell Text
|
#endregion //Cell Text
|
||||||
|
|
||||||
#region Merged / Split Range
|
#region Merged / Split Range
|
||||||
|
Loading…
x
Reference in New Issue
Block a user