Sha256: 85865f6bea77205055aa4683aa9f51181fe71c5f713d43681ed507e7b8f5fb0a
Contents?: true
Size: 611 Bytes
Versions: 12
Compression:
Stored size: 611 Bytes
Contents
#include "stdafx.h" #include "Locator.h" #include "StringHelper.h" using namespace RAutomation::UIA::Extensions; extern "C" { __declspec ( dllexport ) void Control_GetValue(const FindInformation& findInformation, char* theValue, const int maximumLength) { auto value = Element::Value(Locator::FindFor(findInformation)); StringHelper::CopyToUnmanagedString(value, theValue, maximumLength); } __declspec ( dllexport ) void Control_SetValue(const FindInformation& findInformation, const char* theValue) { Element::SetValue(Locator::FindFor(findInformation), gcnew String(theValue)); } }
Version data entries
12 entries across 12 versions & 1 rubygems