NGWS SDK Documentation  

This is preliminary documentation and subject to change.
To comment on this topic, please send us email at ngwssdk@microsoft.com. Thanks!

ISelectionUIService.GetAdornmentHitTest

Tests to determine if the given screen coordinate is over an adornment for the specified component. This will only return true if the adornment, and selection UI, is visible.

[Visual Basic]
Function GetAdornmentHitTest( _
   ByVal component As Object, _
   ByVal pt As Point _
) As Boolean
[C#]
bool GetAdornmentHitTest(
   object component,
   Point pt
);
[C++]
bool GetAdornmentHitTest(
   Object* component,
   Point pt
) = 0;
[JScript]
function GetAdornmentHitTest(
   component : Object,
   pt : Point
) : Boolean;

Parameters

component
Component to test
pt
point, in screen coordinates, to test

See Also

ISelectionUIService Interface | ISelectionUIService Members | System.WinForms.Design Namespace