Version

HardBreakOnAllErrors Property

True by default, If value is true, it will allow any exception to bubble up to QTP, which in turn by default will stop the script and display a message box with the exception. This can be captured via QTP with the ON ERROR RESUME NEXT (see QTP documentation on that subject), if the value evaluates to false, it will instead report the exception to the HP Run Results, and attempt to continue on.
Syntax
'Declaration
 
<ProxySetting(TypeIDValue=2, DefaultValue=True)>
Protected Property HardBreakOnAllErrors As System.Boolean
[ProxySetting(TypeIDValue=2, DefaultValue=True)]
protected System.bool HardBreakOnAllErrors {get; set;}
[ProxySetting(TypeIDValue=2, DefaultValue=True)]
protected: __property System.bool get_HardBreakOnAllErrors();
protected: __property void set_HardBreakOnAllErrors( 
   System.bool value
);
Requirements

Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also