Click or drag to resize
AppointmentCollectionContains Method
Determines whether an element is in the AppointmentCollection.

Namespace: Kettic.AspNet.Controls
Assembly: Kettic.AspNet.Controls (in Kettic.AspNet.Controls.dll) Version: 2014.4.1129.0 (2014.04.1129.0)
Syntax
public bool Contains(
	Appointment appointment
)

Parameters

appointment
Type: Kettic.AspNet.ControlsAppointment
The Appointment to locate in the AppointmentCollection.

Return Value

Type: Boolean
true if item is found in the AppointmentCollection; otherwise, false.
Remarks
This method performs a linear search; therefore, this method is an O(n) operation, where n is Count.
See Also