21 references to S_OK
UIAutomationClientSideProviders (21)
MS\Internal\AutomationProxies\Accessible.cs (4)
215
if(hr == NativeMethods.
S_OK
&& acc != null)
222
if (hr != NativeMethods.
S_OK
|| acc == null)
864
if ( result != NativeMethods.
S_OK
)
903
if (hr != NativeMethods.
S_OK
|| accObject == null)
MS\Internal\AutomationProxies\ProxySimple.cs (1)
645
_IAccessible = Accessible.AccessibleObjectFromWindow(_hwnd, NativeMethods.OBJID_CLIENT, ref acc) == NativeMethods.
S_OK
? acc.IAccessible : null;
MS\Internal\AutomationProxies\SafeThemeHandle.cs (1)
31
return !IsInvalid ? CloseThemeData(handle) == (IntPtr)NativeMethods.
S_OK
: true;
MS\Internal\AutomationProxies\WindowsButton.cs (4)
322
Accessible.AccessibleObjectFromWindow(hwndRadioButton, NativeMethods.OBJID_CLIENT, ref accRadioButton) != NativeMethods.
S_OK
||
397
if (Accessible.AccessibleObjectFromWindow(hwndParent, NativeMethods.OBJID_CLIENT, ref accParent) != NativeMethods.
S_OK
|| accParent == null)
683
if (Accessible.AccessibleObjectFromWindow(hwnd, NativeMethods.OBJID_CLIENT, ref acc) == NativeMethods.
S_OK
&&
723
if (Accessible.AccessibleObjectFromWindow(hwnd, NativeMethods.OBJID_CLIENT, ref acc) == NativeMethods.
S_OK
&&
MS\Internal\AutomationProxies\WindowsFormsHelpers.cs (2)
31
if (Accessible.AccessibleObjectFromWindow(hwnd, idObject, ref acc) != NativeMethods.
S_OK
|| acc == null)
77
if (Accessible.AccessibleObjectFromWindow(hwnd, NativeMethods.OBJID_CLIENT, ref acc) != NativeMethods.
S_OK
|| acc == null)
MS\Internal\AutomationProxies\WindowsRichEdit.cs (5)
484
if (UnsafeNativeMethods.AccessibleObjectFromWindow(WindowHandle, NativeMethods.OBJID_NATIVEOM, ref UnsafeNativeMethods.IID_IDispatch, ref obj) != NativeMethods.
S_OK
)
535
if (range.GetEmbeddedObject(out embeddedObject) == NativeMethods.
S_OK
&& embeddedObject != null)
593
if (hr != NativeMethods.
S_OK
)
621
if (hr != NativeMethods.
S_OK
|| med.hGlobal == IntPtr.Zero)
631
if (hr != NativeMethods.
S_OK
|| med.hGlobal == IntPtr.Zero)
MS\Internal\AutomationProxies\WindowsStatic.cs (1)
175
return Accessible.AccessibleObjectFromWindow(hwnd, NativeMethods.OBJID_CLIENT, ref acc) == NativeMethods.
S_OK
&& acc != null && acc.ChildCount > 0;
MS\Internal\AutomationProxies\WindowsStatusBar.cs (1)
565
if (Accessible.AccessibleObjectFromWindow(hwnd, NativeMethods.OBJID_CLIENT, ref acc) != NativeMethods.
S_OK
|| acc == null)
MS\Internal\AutomationProxies\WindowsUpDown.cs (1)
311
return hr == NativeMethods.
S_OK
&& acc != null ? acc.Role == AccessibleRole.SpinButton : false;
MS\Internal\AutomationProxies\WinFormsSpinner.cs (1)
181
if (Accessible.AccessibleObjectFromWindow(hwndSpin, NativeMethods.OBJID_CLIENT, ref acc) != NativeMethods.
S_OK
|| acc == null)