AcManager.Tools.AcObjectsNew.AcCommonObject.RemoveError C# (CSharp) Method

RemoveError() public method

public RemoveError ( IAcError error ) : void
error IAcError
return void
        public void RemoveError(IAcError error) {
            if (!_errors.Contains(error)) return;
            _errors.Remove(error);
            if (Errors.Count == 0) {
                OnPropertyChanged(nameof(HasErrors));
            }
        }

Same methods

AcCommonObject::RemoveError ( AcErrorType type ) : void