 | TaskListViewGetItemAt Method |
Retrieves the item at the specified location.
Namespace:
Microsoft.Win32.TaskScheduler
Assembly:
Microsoft.Win32.TaskSchedulerEditor (in Microsoft.Win32.TaskSchedulerEditor.dll) Version: 2.10.1
Syntaxpublic Task GetItemAt(
int x,
int y
)
Public Function GetItemAt (
x As Integer,
y As Integer
) As Task
public:
Task^ GetItemAt(
int x,
int y
)
Request Example
View SourceParameters
- x
- Type: SystemInt32
The x-coordinate of the location to search for an item (expressed in client coordinates). - y
- Type: SystemInt32
The y-coordinate of the location to search for an item (expressed in client coordinates).
Return Value
Type:
TaskA
Task that represents the item at the specified position. If there is no item at the specified location, the method returns
null.
See Also