|
ED
|
avaliable
|
RT
|
not used
|
Returns "True" when the actual driver object support the given
VarType and ChannelType combination.
Sub Channelsupport() Dim zDRV As Driver Dim zVTP As VarType 'get a Driver object for Simulation-Driver Set zDRV = MyWorkspace.ActiveDocument.Drivers.Item("SIMUL_WIZ") 'get a VarType object for UINT Set zVTP = MyWorkspace.ActiveDocument.VarTypes.Item("UINT") If zDRV.SupportsChannel(tpSPSMerker, zVTP) = True Then Debug.Print "This combination is supported by the driver." Else Debug.Print "NOT supported by this driver!" End If End Sub