ns=2;s=DEPRAG Smart/Local/MouseFunctions/StopDetectingMouseClick
Stoppt die Überwachung der Position der Maus beim Drücken einer Maustaste.
Neben den bereits erläuterten Parametern sind für die Implementierung in TwinCAT 3 nachfolgende Variablen anzulegen / zu übergeben:
VAR
bMouseFunctionsStopDetectingMouseClick : BOOL;
OutputDataMouseFunctionsStopDetectingMouseClick : ST_VoidOutputData;
hrMouseFunctionsStopDetectingMouseClick : HRESULT;
fbMouseFunctions : FB_MouseFunctions;
END_VAR
hrMouseFunctionsStopDetectingMouseClick := fbMouseFunctions.StopDetectingMouseClick(
bExecute := bMouseFunctionsStopDetectingMouseClick,
ConnectionHandle := depragSmartConnection.ConnectionHandle,
OutputData => OutputDataMouseFunctionsStopDetectingMouseClick);
IF hrMouseFunctionsStopDetectingMouseClick <> S_FALSE THEN
bMouseFunctionsStopDetectingMouseClick := FALSE;
END_IF
Für Beispiele und Erklärungen bezüglich der Aufrufe von Knoten via Siemens TIA Portal sei an dieser Stelle auf den Unterpunkt "Siemens TIA Portal" in Abschnitt "Erste Schritte" verwiesen.