Description |
Shows or hides the dialog which displays global pass/fail results. Learn more about Global Pass/Fail. |
VB Syntax |
app.DisplayGlobalPassFail = value |
Variable |
(Type) - Description |
app |
An Application (object) |
value |
(Boolean) True - displays the pass/fail dialog. False - hides the pass/fail dialog. |
Return Type |
Boolean |
Default |
False |
Examples |
Dim app As Application Set app = New Application app.DisplayGlobalPassFail = true 'shows dialog |
C++ Syntax |
HRESULT get_DisplayGlobalPassFail(VARIANT_BOOL * Val); HRESULT put_DisplayGlobalPassFail(VARIANT_BOOL Val); |
Interface |
IApplication6 |