CheckCell.WorkbookState.ResetTool C# (CSharp) Method

ResetTool() public method

public ResetTool ( ) : void
return void
        public void ResetTool()
        {
            RestoreOutputColors();
            _known_good.Clear();
            SetTool(active: false);
        }

Usage Example

Example #1
0
 private void StartOverButton_Click(object sender, RibbonControlEventArgs e)
 {
     current_workbook.ResetTool();
     SetUIState(current_workbook);
 }