Write-only |
About Data Views |
Description |
View the data in the specified analysis view. |
VB Syntax |
doc.OpenAnalysisView analysisType, IView |
Variable |
(Type) - Description |
doc |
(object) - A PLTSDocument object |
anaysisType |
(Short) Analysis view. Provide either the number or enumeration type depending on your programming environment. 0 - TIME_DIFF (Time domain differential) 1 - TIME_SNGL (Time domain single-ended) 2 - FREQ_BAL (Frequency domain balanced) 3 - FREQ_SNGL (Frequency domain single-ended) 4 - EYE_DIFF (Eye diagram differential) 5 - EYE_SNGL (Eye diagram single-ended) 6 - RLCGD (RLCG differential) 7 - RLCGC (RLCG common) 8 - RLCGWE (RLCG W element) 9 - RLCGSM (RLCG self mutual) |
IView |
(Object) [out] Returns a handle to the PLTSView Object |
Return Type |
None |
Default |
None |
Examples |
doc.OpenAnalysisView RLCGD, iView or doc.OpenAnalysisView 6, iView |
C++ Syntax |
HRESULT OpenAnalysisView(SHORT analysisType, IDispatch** ppView); |
Interface |
IPLTSApplication |