Sha256: 44974c8431f036d3c25fe04645cf5d145ab17f82e9d4122f517d9b80721491e1

Contents?: true

Size: 582 Bytes

Versions: 1

Compression:

Stored size: 582 Bytes

Contents

#pragma once
using namespace System::Windows::Automation;
using namespace System::Windows::Forms;
using namespace System::Drawing;

#include "AutomationControl.h"

ref class AutomationClicker : AutomationControl
{
public:
  AutomationClicker(const HWND windowHandle) : AutomationControl(windowHandle) {}
  AutomationClicker(const FindInformation& findInformation) : AutomationControl(findInformation) {}
	void Click();
	void MouseClick();

private:
	bool CanInvoke();
	void Invoke();

	bool CanToggle();
	void Toggle();

	bool CanSelect();
	void Select();
};

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
rautomation-0.9.1 ext/UiaDll/UiaDll/AutomationClicker.h