ns=2;s=DEPRAG Smart/Local/MouseFunctions/StartDetectingMouseClick
Startet 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
bMouseFunctionsStartDetectingMouseClick : BOOL;
OutputDataMouseFunctionsStartDetectingMouseClick : ST_VoidOutputData;
hrMouseFunctionsStartDetectingMouseClick : HRESULT;
fbMouseFunctions : FB_MouseFunctions;
END_VAR
hrMouseFunctionsStartDetectingMouseClick := fbMouseFunctions.StartDetectingMouseClick(
bExecute := bMouseFunctionsStartDetectingMouseClick,
ConnectionHandle := depragSmartConnection.ConnectionHandle,
OutputData => OutputDataMouseFunctionsStartDetectingMouseClick);
IF hrMouseFunctionsStartDetectingMouseClick <> S_FALSE THEN
bMouseFunctionsStartDetectingMouseClick := 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.