|
PortController.NET
OnCtsToggle Event
Triggered when the state of the clear-to-send line changes.
Syntax
[Visual Basic]
Private Sub myPortController_OnCtsToggle(ByVal sender As Object, ByVal e As SciCom.PortController.ControlLineEventArgs) Handles myPortController.OnCtsToggle
[C#]
private void OnCtsToggle(object sender, SciCom.PortController.ControlLineEventArgs e)
[C++]
System::Void OnCtsToggle(System::Object * sender, SciCom::PortController::ControlLineEventArgs * e)
Parameters
sender
A reference to the PortController object.
e
The arguments associated with the event.
Arguments
NewVal: a boolean value that holds the new value of the clear-to-send line. NewVal is false when the clear-to-send line is OFF and true when the clear-to-send line is ON
Remarks
Triggered when PortController detects a change in the state of the clear-to-send line.
See Also
Cts property
|