AppointmentCollectionFindByID Method |
Searches for an
Appointment with the specified
ID and returns a reference to it.
Namespace: Kettic.AspNet.ControlsAssembly: Kettic.AspNet.Controls (in Kettic.AspNet.Controls.dll) Version: 2014.4.1129.0 (2014.04.1129.0)
Syntaxpublic Appointment FindByID(
Object id
)
Public Function FindByID (
id As Object
) As Appointment
public:
Appointment^ FindByID(
Object^ id
)
member FindByID :
id : Object -> Appointment
Parameters
- id
- Type: SystemObject
The AppointmentID to search for.
Return Value
Type:
Appointment
The
Appointment with the specified
ID, if found; otherwise, null.
Remarks
This method determines equality by calling Object.Equals.
See Also