Write/Read |
About Scale Coupling |
Description |
Sets and returns the method of scale coupling. |
VB Syntax |
win.ScaleCouplingMethod = value |
Variable |
(Type) - Description |
win |
An NAWindow (object) Any window object can be used to set this global property. |
value |
(enum NAScaleCouplingMethod) 0 – naScaleCouplingOff - Scale Coupling is Off 1 – naScaleCouplingWindow - Traces within selected windows share scaling 2 – naScaleCouplingAll - Scaling is shared among traces in all selected windows Select windows using ScaleCouplingState Property |
Return Type |
Enum |
Default |
0 – naScaleCouplingOff |
Examples |
win.ScaleCouplingMethod = naScaleCouplingWindow 'Write method = app.ActiveNAWindow.ScaleCouplingMethod 'Read |
C++ Syntax |
HRESULT get_ScaleCouplingMethod(tagNAScaleCouplingMethod* couplingMethod); HRESULT put_ScaleCouplingMethod(tagNAScaleCouplingMethod couplingMethod); |
Interface |
INAWindow2 |