Read-only |
About Views |
|
Description |
Get the pass/fail test result of one plot. |
|
VB Syntax |
pltsView.GetPlotPassFail(plotIndex, pass, details) |
|
Variable |
(Type) - Description |
|
pltsView |
(object) - A PLTSView object |
|
plotIndex |
(short) Index of the plot (zero based). |
|
pass |
(boolean) True for pass, False for fail. |
|
details |
(string) Detailed description in xml format. |
|
Return Type |
VARIANT_Boolean |
|
Default |
None |
|
Examples |
Dim pass As Boolean = True Dim passFailDetails As String = "" pltsView.GetPlotPassFail(1, pass, passFailDetails) Console.WriteLine(passFailDetails) |
|
C++ Syntax |
HRESULT GetPlotPassFail(SHORT plotIndex, VARIANT_BOOL* pass, BSTR* details); |
|
Interface |
IPLTSView |