PocketPlanner Programmer's Guide

Calendar.GetContactAt Method (Int32, Int32)

See Also

Gets the Contact object whose schedule is displayed at the specified coordinates.

Namespace: MindFusion.Scheduling.Compact
Assembly: PocketPlanner

 Syntax

C#

public Contact GetContactAt (
    int x,
    int y
)

Visual Basic

Public Function GetContactAt ( _
    x As Integer, _
    y As Integer _
) As Contact

 Parameters

x
The x-coordinate of the position at which to look for contact's scheduled items.
y
The y-coordinate of the position at which to look for contact's scheduled items.

 Return Value

An instance of the Contact class representing the contact related to the scheduled items displayed at the specified position.

 Remarks

This method can be only be used in views that support grouping.

 See Also