This commit is contained in:
John Jenko 2011-01-20 18:15:58 +00:00
parent 3fe2d27771
commit 8caee80740

View File

@ -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