File name
Commit message
Commit date
File name
Commit message
Commit date
<?xml version="1.0"?>
<doc>
<assembly>
<name>DevExpress.XtraScheduler.v14.1.Core</name>
</assembly>
<members>
<member name="T:DevExpress.XtraScheduler.AppointmentStatusBaseCollection">
<summary>
<para>Represents the base class for the collection of appointment statuses.
</para>
</summary>
</member>
<member name="M:DevExpress.XtraScheduler.AppointmentStatusBaseCollection.GetStandardStatusId(DevExpress.XtraScheduler.AppointmentStatusType)">
<summary>
<para>Returns the id value of the standard appointment status within the collection.
</para>
</summary>
<param name="type">
An <see cref="T:DevExpress.XtraScheduler.AppointmentStatusType"/> enumeration value which specifies the type of standard appointment status to return.
</param>
<returns>An integer value representing the id of the appointment status whose <see cref="P:DevExpress.XtraScheduler.AppointmentStatusBase.Type"/> is equal to the specified type. If an appointment status of the specified type isn't found, or if the specified type is equal to <b>Custom</b>, then <b>-1</b> will be returned.
</returns>
</member>
<member name="P:DevExpress.XtraScheduler.AppointmentStatusBaseCollection.Item(System.Int32)">
<summary>
<para>Provides indexed access to individual items in the collection.
</para>
</summary>
<param name="index">
A zero-based integer specifying the desired item's position within the collection. If it's negative or exceeds the last available index, an exception is raised.
</param>
<value>An <see cref="T:DevExpress.XtraScheduler.AppointmentStatusBase"/> descendant which represents the appointment status at the specified position.
</value>
</member>
<member name="P:DevExpress.XtraScheduler.AppointmentStatusBaseCollection.Item(DevExpress.XtraScheduler.AppointmentStatusType)">
<summary>
<para>Gets the <see cref="T:DevExpress.XtraScheduler.AppointmentStatusBase"/> object specified by the appointment status type.
</para>
</summary>
<param name="type">
An <see cref="T:DevExpress.XtraScheduler.AppointmentStatusType"/> enumeration value specifying the type of the required <see cref="T:DevExpress.XtraScheduler.AppointmentStatus"/> object.
</param>
<value>An <see cref="T:DevExpress.XtraScheduler.AppointmentStatusBase"/> object which represents the appointment status of the specified type.
</value>
</member>
<member name="T:DevExpress.XtraScheduler.AppointmentStatusBase">
<summary>
<para>Represents the base class for the appointment status.
</para>
</summary>
</member>
<member name="P:DevExpress.XtraScheduler.AppointmentStatusBase.Empty">
<summary>
<para>Returns an empty appointment status.
</para>
</summary>
<value>An AppointmentStatusBase value representing an empty appointment status.
</value>
</member>
<member name="P:DevExpress.XtraScheduler.AppointmentStatusBase.Type">
<summary>
<para>Gets or sets the type of the appointment status.
</para>
</summary>
<value>An <see cref="T:DevExpress.XtraScheduler.AppointmentStatusType"/> enumeration value representing the type of the appointment status.
</value>
</member>
<member name="T:DevExpress.XtraScheduler.QueryResourceColorSchemaEventArgs">
<summary>
<para>Provides data for the <see cref="E:DevExpress.XtraScheduler.SchedulerControl.QueryResourceColorSchema"/> and <see cref="E:DevExpress.Xpf.Scheduler.SchedulerControl.QueryResourceColorSchema"/> events.
</para>
</summary>
</member>
<member name="M:DevExpress.XtraScheduler.QueryResourceColorSchemaEventArgs.#ctor(DevExpress.XtraScheduler.Resource,System.Int32)">
<summary>
<para>Initializes a new instance of the QueryResourceColorSchemaEventArgs class with the specified resource and resource color schema index.
</para>
</summary>
<param name="resource">
A <see cref="T:DevExpress.XtraScheduler.Resource"/> object that specifies the event's resource.
</param>
<param name="resourceColorIndex">
An integer which specifies an index of the processed resource's color schema in a <see cref="T:DevExpress.XtraScheduler.SchedulerColorSchemaCollection"/> collection.
</param>
</member>
<member name="P:DevExpress.XtraScheduler.QueryResourceColorSchemaEventArgs.Resource">
<summary>
<para>Gets the resource for which the color schema is queried.
</para>
</summary>
<value>A <see cref="T:DevExpress.XtraScheduler.Resource"/> object.
</value>
</member>
<member name="P:DevExpress.XtraScheduler.QueryResourceColorSchemaEventArgs.ResourceColorIndex">
<summary>
<para>Gets the index of the processed resource's color schema in a <see cref="T:DevExpress.XtraScheduler.SchedulerColorSchemaCollection"/> collection.
</para>
</summary>
<value>An integer which specifies the resource's color schema index.
</value>
</member>
<member name="P:DevExpress.XtraScheduler.QueryResourceColorSchemaEventArgs.ResourceColorSchema">
<summary>
<para>Gets or sets a color schema to be used for a visible resource coloring.
</para>
</summary>
<value>A <see cref="T:DevExpress.XtraScheduler.SchedulerColorSchema"/> object.
</value>
</member>
<member name="T:DevExpress.XtraScheduler.ResourceStorageBase">
<summary>
<para>A base class that represents a storage to hold a collection of resources for appointments.
</para>
</summary>
</member>
<member name="M:DevExpress.XtraScheduler.ResourceStorageBase.#ctor(DevExpress.XtraScheduler.SchedulerStorageBase)">
<summary>
<para>Initializes a new instance of the <see cref="T:DevExpress.XtraScheduler.ResourceStorageBase"/> class with the specified scheduler storage.
</para>
</summary>
<param name="storage">
A <see cref="T:DevExpress.XtraScheduler.SchedulerStorageBase"/> value that specifies the scheduler storage of the resource storage.
</param>
</member>
<member name="M:DevExpress.XtraScheduler.ResourceStorageBase.#ctor">
<summary>
<para>Initializes a new instance of the ResourceStorageBase class with default settings.
</para>
</summary>
</member>
<member name="M:DevExpress.XtraScheduler.ResourceStorageBase.Add(DevExpress.XtraScheduler.Resource)">
<summary>
<para>Appends the specified <see cref="T:DevExpress.XtraScheduler.Resource"/> object to the collection of resources in the storage.
</para>
</summary>
<param name="resource">
A <see cref="T:DevExpress.XtraScheduler.Resource"/> object to append to the collection.
</param>
<returns>An integer value indicating the position into which the new element was inserted.
</returns>
</member>
<member name="M:DevExpress.XtraScheduler.ResourceStorageBase.AddRange(DevExpress.XtraScheduler.Resource[])">
<summary>
<para>Appends an array of resources to the storage's collection.
</para>
</summary>
<param name="resources">
An array of <see cref="T:DevExpress.XtraScheduler.Resource"/> objects to append to the collection.
</param>
</member>
<member name="P:DevExpress.XtraScheduler.ResourceStorageBase.ColorSaving">
<summary>
<para>Gets or sets a type of format to store the color information.
</para>
</summary>
<value>A <see cref="T:DevExpress.XtraScheduler.ColorSavingType"/> enumeration value, indicating the type in which the color is stored.
</value>
</member>
<member name="M:DevExpress.XtraScheduler.ResourceStorageBase.Contains(DevExpress.XtraScheduler.Resource)">
<summary>
<para>Determines whether the storage contains the specified resource.
</para>
</summary>
<param name="resource">
A <see cref="T:DevExpress.XtraScheduler.Resource"/> object to locate in the storage.
</param>
<returns><b>true</b> if the storage contains the specified resource; otherwise, <b>false</b>.
</returns>
</member>
<member name="P:DevExpress.XtraScheduler.ResourceStorageBase.DataManager">
<summary>
<para>For internal use only.
</para>
</summary>
<value>A DevExpress.XtraScheduler.Data.ResourceDataManager object.
</value>
</member>
<member name="P:DevExpress.XtraScheduler.ResourceStorageBase.Filter">
<summary>
<para>Gets or sets a criteria string used to filter resources.
</para>
</summary>
<value>A string, representing a logical expression.
</value>
</member>
<member name="M:DevExpress.XtraScheduler.ResourceStorageBase.GetResourceById(System.Object)">
<summary>
<para>Gets a resource within the collection by its ID value.
</para>
</summary>
<param name="resourceId">
A <see cref="T:System.Object"/> which represents the resource ID.
</param>
<returns>A <see cref="T:DevExpress.XtraScheduler.Resource"/> object whose <see cref="P:DevExpress.XtraScheduler.Resource.Id"/> is equal to the specified resource ID. If no resource with the specified ID is found, then the <see cref="P:DevExpress.XtraScheduler.Resource.Empty"/> value will be returned.
</returns>
</member>
<member name="P:DevExpress.XtraScheduler.ResourceStorageBase.Item(System.Int32)">
<summary>
<para>Provides indexed access to the individual items in the collection which can be accessed via the storage's <see cref="P:DevExpress.XtraScheduler.ResourceStorageBase.Items"/> property.
</para>
</summary>
<param name="index">
A zero-based integer specifying the item's position within the resource collection. If it's negative or exceeds the last available index, an exception is raised.
</param>
<value>A <see cref="T:DevExpress.XtraScheduler.Resource"/> object which represents the resource at the specified position.
</value>
</member>
<member name="P:DevExpress.XtraScheduler.ResourceStorageBase.Items">
<summary>
<para>Gets the collection of resources within the storage.
</para>
</summary>
<value>A <see cref="T:DevExpress.XtraScheduler.ResourceCollection"/> object that contains a collection of resources.
</value>
</member>
<member name="M:DevExpress.XtraScheduler.ResourceStorageBase.LoadFromXml(System.String)">
<summary>
<para>Loads settings of resources from the specified XML file to the resource storage.
</para>
</summary>
<param name="fileName">
A <see cref="T:System.String"/> value specifying the path to the file from which resources should be loaded. If an empty string is specified, an exception is raised.
</param>
</member>
<member name="M:DevExpress.XtraScheduler.ResourceStorageBase.LoadFromXml(System.IO.Stream)">
<summary>
<para>Loads settings of resources from the specified stream to the resource storage.
</para>
</summary>
<param name="stream">
A <see cref="T:System.IO.Stream"/> descendant from which resources are loaded. If <b>null</b> (<b>Nothing</b> in Visual Basic), an exception is raised.
</param>
</member>
<member name="M:DevExpress.XtraScheduler.ResourceStorageBase.Remove(DevExpress.XtraScheduler.Resource)">
<summary>
<para>Removes the specified <see cref="T:DevExpress.XtraScheduler.Resource"/> object from the storage.
</para>
</summary>
<param name="resource">
A <see cref="T:DevExpress.XtraScheduler.Resource"/> object representing the resource to be removed.
</param>
</member>
<member name="M:DevExpress.XtraScheduler.ResourceStorageBase.SaveToXml(System.IO.Stream)">
<summary>
<para>Saves resources from the resource storage to the specified stream.
</para>
</summary>
<param name="stream">
A <see cref="T:System.IO.Stream"/> descendant to which resources should be written. If <b>null</b> (<b>Nothing</b> in Visual Basic), an exception is raised.
</param>
</member>
<member name="M:DevExpress.XtraScheduler.ResourceStorageBase.SaveToXml(System.String)">
<summary>
<para>Saves resources from the resource storage to an XML file.
</para>
</summary>
<param name="fileName">
A <see cref="T:System.String"/> value specifying the path to the file where resources should be written. If an empty string is specified, an exception is raised.
</param>
</member>
<member name="M:DevExpress.XtraScheduler.ResourceStorageBase.SetResourceFactory(DevExpress.XtraScheduler.IResourceFactory)">
<summary>
<para>Assigns the specified resource factory to the ResourceStorageBase.
</para>
</summary>
<param name="factory">
An object, implementing the <b>IResourceFactory</b> interface, which specifies the new resource factory for the storage.
</param>
</member>
<member name="T:DevExpress.XtraScheduler.AppointmentDependencyMappingInfo">
<summary>
<para>Provides information on the mapping of the appointment dependency properties to the appropriate data fields.
</para>
</summary>
</member>
<member name="M:DevExpress.XtraScheduler.AppointmentDependencyMappingInfo.#ctor">
<summary>
<para>Initializes a new instance of the AppointmentDependencyMappingInfo class with the default settings.
</para>
</summary>
</member>
<member name="P:DevExpress.XtraScheduler.AppointmentDependencyMappingInfo.DependentId">
<summary>
<para>Gets or sets the data field which an AppointmentDependency's DependentId property is bound to.
</para>
</summary>
<value>A <see cref="T:System.String"/> value that specifies the name of the bound data field.
</value>
</member>
<member name="M:DevExpress.XtraScheduler.AppointmentDependencyMappingInfo.GetRequiredMappingNames">
<summary>
<para>Gets an array containing the names of all the AppointmentDependencyMappingInfo object's properties that have to be bound to corresponding data fields.
</para>
</summary>
<returns>An array of strings that are the names of the properties that have to be bound to data.
</returns>
</member>
<member name="P:DevExpress.XtraScheduler.AppointmentDependencyMappingInfo.ParentId">
<summary>
<para>Gets or sets the data field which an AppointmentDependency's ParentId property is bound to.
</para>
</summary>
<value>A <see cref="T:System.String"/> value that specifies the name of the bound data field.
</value>
</member>
<member name="P:DevExpress.XtraScheduler.AppointmentDependencyMappingInfo.Type">
<summary>
<para>Gets or sets the data field which an AppointmentDependency's Type property is bound to.
</para>
</summary>
<value>A <see cref="T:System.String"/> value that specifies the name of the bound data field.
</value>
</member>
<member name="T:DevExpress.XtraScheduler.UI.ValidationArgs">
<summary>
<para>This class is used for a control setting's validation, and holds a control, validation result, and an error message, if any.
</para>
</summary>
</member>
<member name="M:DevExpress.XtraScheduler.UI.ValidationArgs.#ctor">
<summary>
<para>Initializes a new instance of the ValidationArgs class with default settings.
</para>
</summary>
</member>
<member name="P:DevExpress.XtraScheduler.UI.ValidationArgs.Control">
<summary>
<para>Gets or sets the control whose settings are validated.
</para>
</summary>
<value>An object representing a control used in the procedure of settings validation.
</value>
</member>
<member name="P:DevExpress.XtraScheduler.UI.ValidationArgs.ErrorMessage">
<summary>
<para>Gets or sets text that contains an error message representing the result of control settings validation.
</para>
</summary>
<value>A <see cref="T:System.String"/> value that contains an error message.
</value>
</member>
<member name="P:DevExpress.XtraScheduler.UI.ValidationArgs.Valid">
<summary>
<para>Indicates whether <see cref="P:DevExpress.XtraScheduler.UI.ValidationArgs.Control"/> settings are valid.
</para>
</summary>
<value><b>true</b> if control settings are valid, otherwise <b>false</b>.
</value>
</member>
<member name="T:DevExpress.XtraScheduler.Localization.SchedulerStringId">
<summary>
<para>Lists values of localizable strings.
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.Localization.SchedulerStringId.Abbr_Day">
<summary>
<para>Abbreviation used in the resulting strings of the <see cref="M:DevExpress.XtraScheduler.RecurrenceInfo.GetDescription"/> and <see cref="M:DevExpress.XtraScheduler.Native.HumanReadableTimeSpanHelper.ToString"/> methods.
<para>
<b>Default Value</b>: "day"
</para>
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.Localization.SchedulerStringId.Abbr_Days">
<summary>
<para>Abbreviation used in the resulting strings of the <see cref="M:DevExpress.XtraScheduler.RecurrenceInfo.GetDescription"/> and <see cref="M:DevExpress.XtraScheduler.Native.HumanReadableTimeSpanHelper.ToString"/> methods.
<para>
<b>Default Value</b>: "days"
</para>
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.Localization.SchedulerStringId.Abbr_DaysShort">
<summary>
<para>Abbreviation used in the resulting string of the <see cref="M:DevExpress.XtraScheduler.Native.HumanReadableTimeSpanHelper.ToString"/> method.
<para>
<b>Default Value</b>: "d"
</para>
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.Localization.SchedulerStringId.Abbr_Hour">
<summary>
<para>Abbreviation used in the resulting strings of the <see cref="M:DevExpress.XtraScheduler.RecurrenceInfo.GetDescription"/> and <see cref="M:DevExpress.XtraScheduler.Native.HumanReadableTimeSpanHelper.ToString"/> methods.
<para>
<b>Default Value</b>: "hour"
</para>
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.Localization.SchedulerStringId.Abbr_Hours">
<summary>
<para>Abbreviation used in the resulting strings of the <see cref="M:DevExpress.XtraScheduler.RecurrenceInfo.GetDescription"/> and <see cref="M:DevExpress.XtraScheduler.Native.HumanReadableTimeSpanHelper.ToString"/> methods.
<para>
<b>Default Value</b>: "hours"
</para>
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.Localization.SchedulerStringId.Abbr_HoursShort">
<summary>
<para>Abbreviation used in the resulting strings of the <see cref="M:DevExpress.XtraScheduler.RecurrenceInfo.GetDescription"/> and <see cref="M:DevExpress.XtraScheduler.Native.HumanReadableTimeSpanHelper.ToString"/> methods.
<para>
<b>Default Value</b>: "h"
</para>
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.Localization.SchedulerStringId.Abbr_Minute">
<summary>
<para>Abbreviation used in the resulting strings of the <see cref="M:DevExpress.XtraScheduler.RecurrenceInfo.GetDescription"/> and <see cref="M:DevExpress.XtraScheduler.Native.HumanReadableTimeSpanHelper.ToString"/> methods.
<para>
<b>Default Value</b>: "minute"
</para>
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.Localization.SchedulerStringId.Abbr_Minutes">
<summary>
<para>Abbreviation used in the resulting strings of the <see cref="M:DevExpress.XtraScheduler.RecurrenceInfo.GetDescription"/> and <see cref="M:DevExpress.XtraScheduler.Native.HumanReadableTimeSpanHelper.ToString"/> methods.
<para>
<b>Default Value</b>: "minutes"
</para>
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.Localization.SchedulerStringId.Abbr_MinutesShort1">
<summary>
<para>Abbreviation used in the resulting strings of the <see cref="M:DevExpress.XtraScheduler.RecurrenceInfo.GetDescription"/> and <see cref="M:DevExpress.XtraScheduler.Native.HumanReadableTimeSpanHelper.ToString"/> methods.
<para>
<b>Default Value</b>: "m"
</para>
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.Localization.SchedulerStringId.Abbr_MinutesShort2">
<summary>
<para>Abbreviation used in the resulting strings of the <see cref="M:DevExpress.XtraScheduler.RecurrenceInfo.GetDescription"/> and <see cref="M:DevExpress.XtraScheduler.Native.HumanReadableTimeSpanHelper.ToString"/> methods.
<para>
<b>Default Value</b>: "min"
</para>
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.Localization.SchedulerStringId.Abbr_Month">
<summary>
<para>Abbreviation used in the resulting strings of the <see cref="M:DevExpress.XtraScheduler.RecurrenceInfo.GetDescription"/> and <see cref="M:DevExpress.XtraScheduler.Native.HumanReadableTimeSpanHelper.ToString"/> methods.
<para>
<b>Default Value</b>: "month"
</para>
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.Localization.SchedulerStringId.Abbr_Months">
<summary>
<para>Abbreviation used in the resulting strings of the <see cref="M:DevExpress.XtraScheduler.RecurrenceInfo.GetDescription"/> and <see cref="M:DevExpress.XtraScheduler.Native.HumanReadableTimeSpanHelper.ToString"/> methods.
<para>
<b>Default Value</b>: "months"
</para>
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.Localization.SchedulerStringId.Abbr_Week">
<summary>
<para>Abbreviation used in the resulting strings of the <see cref="M:DevExpress.XtraScheduler.RecurrenceInfo.GetDescription"/> and <see cref="M:DevExpress.XtraScheduler.Native.HumanReadableTimeSpanHelper.ToString"/> methods.
<para>
<b>Default Value</b>: "week"
</para>
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.Localization.SchedulerStringId.Abbr_Weeks">
<summary>
<para>Abbreviation used in the resulting strings of the <see cref="M:DevExpress.XtraScheduler.RecurrenceInfo.GetDescription"/> and <see cref="M:DevExpress.XtraScheduler.Native.HumanReadableTimeSpanHelper.ToString"/> methods.
<para>
<b>Default Value</b>: "weeks"
</para>
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.Localization.SchedulerStringId.Abbr_WeeksShort">
<summary>
<para>Abbreviation used in the resulting strings of the <see cref="M:DevExpress.XtraScheduler.RecurrenceInfo.GetDescription"/> and <see cref="M:DevExpress.XtraScheduler.Native.HumanReadableTimeSpanHelper.ToString"/> methods.
<para>
<b>Default Value</b>: "w"
</para>
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.Localization.SchedulerStringId.Abbr_Year">
<summary>
<para>Abbreviation used in the resulting strings of the <see cref="M:DevExpress.XtraScheduler.RecurrenceInfo.GetDescription"/> and <see cref="M:DevExpress.XtraScheduler.Native.HumanReadableTimeSpanHelper.ToString"/> methods.
<para>
<b>Default Value</b>: "year"
</para>
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.Localization.SchedulerStringId.Abbr_Years">
<summary>
<para>Abbreviation used in the resulting strings of the <see cref="M:DevExpress.XtraScheduler.RecurrenceInfo.GetDescription"/> and <see cref="M:DevExpress.XtraScheduler.Native.HumanReadableTimeSpanHelper.ToString"/> methods.
<para>
<b>Default Value</b>: "years"
</para>
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.Localization.SchedulerStringId.Appointment_EndContinueText">
<summary>
<para>Format string used to display text in the appointment which spans beyond the visible interval.
<para>
<b>Default Value</b>: "To {0}"
</para>
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.Localization.SchedulerStringId.Appointment_StartContinueText">
<summary>
<para>Format string used to display text in the appointment which spans beyond the visible interval.
<para>
<b>Default Value</b>: "From {0}"
</para>
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.Localization.SchedulerStringId.AppointmentLabel_Anniversary">
<summary>
<para>The <b>Anniversary</b> appointment label caption in the <b>Appointment Editor</b>
<para>
<b>Default Value</b>: "Anniversary"
</para>
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.Localization.SchedulerStringId.AppointmentLabel_Birthday">
<summary>
<para>The <b>Birthday</b> appointment label caption in the <b>Appointment Editor</b>
<para>
<b>Default Value</b>: "Birthday"
</para>
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.Localization.SchedulerStringId.AppointmentLabel_Business">
<summary>
<para>The <b>Business</b> appointment label caption in the <b>Appointment Editor</b>
<para>
<b>Default Value</b>: "Business"
</para>
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.Localization.SchedulerStringId.AppointmentLabel_Important">
<summary>
<para>The <b>Important</b> appointment label caption in the <b>Appointment Editor</b>
<para>
<b>Default Value</b>: "Important"
</para>
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.Localization.SchedulerStringId.AppointmentLabel_MustAttend">
<summary>
<para>The <b>Must Attend</b> appointment label caption in the <b>Appointment Editor</b>
<para>
<b>Default Value</b>: "Must Attend"
</para>
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.Localization.SchedulerStringId.AppointmentLabel_NeedsPreparation">
<summary>
<para>The <b>Needs Preparation</b> appointment label caption in the <b>Appointment Editor</b>
<para>
<b>Default Value</b>: "Needs Preparation"
</para>
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.Localization.SchedulerStringId.AppointmentLabel_None">
<summary>
<para>The appointment without label caption in the <b>Appointment Editor</b>
<para>
<b>Default Value</b>: "None"
</para>
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.Localization.SchedulerStringId.AppointmentLabel_Personal">
<summary>
<para>The <b>Personal</b> appointment label caption in the <b>Appointment Editor</b>
<para>
<b>Default Value</b>: "Personal"
</para>
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.Localization.SchedulerStringId.AppointmentLabel_PhoneCall">
<summary>
<para>The <b>Phone Call</b> appointment label caption in the <b>Appointment Editor</b>
<para>
<b>Default Value</b>: "Phone Call"
</para>
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.Localization.SchedulerStringId.AppointmentLabel_TravelRequired">
<summary>
<para>The <b>Travel Required</b> appointment label caption in the <b>Appointment Editor</b>
<para>
<b>Default Value</b>: "Travel Required"
</para>
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.Localization.SchedulerStringId.AppointmentLabel_Vacation">
<summary>
<para>The <b>Vacation</b> appointment label caption in the <b>Appointment Editor</b>
<para>
<b>Default Value</b>: "Vacation"
</para>
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.Localization.SchedulerStringId.Caption_10Minutes">
<summary>
<para>The text which identifies a <see cref="T:DevExpress.XtraScheduler.TimeSlot"/> with a 10 minute time span.
<para>
<b>Default Value</b>: "10 Minutes"
</para>
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.Localization.SchedulerStringId.Caption_15Minutes">
<summary>
<para>A text which identifies a <see cref="T:DevExpress.XtraScheduler.TimeSlot"/> with a 15 minute time span.
<para>
<b>Default Value</b>: "15 Minutes"
</para>
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.Localization.SchedulerStringId.Caption_20Minutes">
<summary>
<para>A text which identifies a <see cref="T:DevExpress.XtraScheduler.TimeSlot"/> with a 20 minute time span.
<para>
<b>Default Value</b>: "20 Minutes"
</para>
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.Localization.SchedulerStringId.Caption_30Minutes">
<summary>
<para>A text which identifies a <see cref="T:DevExpress.XtraScheduler.TimeSlot"/> with a 30 minute time span.
<para>
<b>Default Value</b>: "30 Minutes"
</para>
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.Localization.SchedulerStringId.Caption_5Minutes">
<summary>
<para>A text which identifies a <see cref="T:DevExpress.XtraScheduler.TimeSlot"/> with a 5 minute time span.
<para>
<b>Default Value</b>: "5 Minutes"
</para>
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.Localization.SchedulerStringId.Caption_60Minutes">
<summary>
<para>A text which identifies a <see cref="T:DevExpress.XtraScheduler.TimeSlot"/> with a 60 minute time span.
<para>
<b>Default Value</b>: "60 Minutes"
</para>
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.Localization.SchedulerStringId.Caption_6Minutes">
<summary>
<para>A text which identifies a <see cref="T:DevExpress.XtraScheduler.TimeSlot"/> with a 6 minute time span.
<para>
<b>Default Value</b>: "6 Minutes"
</para>
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.Localization.SchedulerStringId.Caption_AllDay">
<summary>
<para>Text for all-day appointments in the printout created as described in the How to: Print a Scheduler and Show its Print Preview document.
<para>
<b>Default Value</b>: "All day"
</para>
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.Localization.SchedulerStringId.Caption_AllResources">
<summary>
<para>Text of the <b>Resources kind</b> combo box item. The combo box editor is located on the Resources tab of the Page Setup dialog.
<para><b>Default Value:</b> "All resources"
</para>
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.Localization.SchedulerStringId.Caption_Appointment">
<summary>
<para>A pattern used to format the <b>Appointment Edit</b> window caption.
<b>Default Value:</b> "{0} - Appointment"
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.Localization.SchedulerStringId.Caption_AppointmentDependencyTypeFinishToFinish">
<summary>
<para>The <b>Finish-To-Finish</b> appointment dependency caption at the <b>Appointment Dependency</b> window.
<b>Default Value:</b> "Finish-To-Finish (FF)"
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.Localization.SchedulerStringId.Caption_AppointmentDependencyTypeFinishToStart">
<summary>
<para>The <b>Finish-To-Start</b> appointment dependency caption at the <b>Appointment Dependency</b> window.
<b>Default Value:</b> "Finish-To-Start (FS)"
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.Localization.SchedulerStringId.Caption_AppointmentDependencyTypeStartToFinish">
<summary>
<para>The <b>Start-To-Finish</b> appointment dependency caption at the <b>Appointment Dependency</b> window.
<b>Default Value:</b> "Start-To-Finish (SF)"
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.Localization.SchedulerStringId.Caption_AppointmentDependencyTypeStartToStart">
<summary>
<para>The <b>Start-To-Start</b> appointment dependency caption at the <b>Appointment Dependency</b> window.
<b>Default Value:</b> "Start-To-Start (SS)"
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.Localization.SchedulerStringId.Caption_Busy">
<summary>
<para>The <b>Busy</b> appointment status caption.
<para><b>Default Value:</b> "Busy"
</para>
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.Localization.SchedulerStringId.Caption_CalendarDetailsPrintStyle">
<summary>
<para>The text of the <b>Style name</b> combo box item. The combo box editor is located on the Format tab of the Page Setup dialog.
<para>
<b>Default Value:</b> "Calendar Details Style"
</para>
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.Localization.SchedulerStringId.Caption_CheckMappings">
<summary>
<para>The caption of the smart tag displayed for the databound SchedulerControl at design time.
<para><b>Default Value:</b> "Check Mappings"
</para>
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.Localization.SchedulerStringId.Caption_ColorConverterBlackAndWhite">
<summary>
<para>The text of the <b>Shading</b> combo box item. The combo box editor is located on the Format tab of the Page Setup dialog.
<para><b>Default Value:</b> "Black And White"
</para>
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.Localization.SchedulerStringId.Caption_ColorConverterFullColor">
<summary>
<para>The text of the <b>Shading</b> combo box item. The combo box editor is located on the Format tab of the Page Setup dialog.
<para><b>Default Value:</b> "Full Color"
</para>
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.Localization.SchedulerStringId.Caption_ColorConverterGrayScale">
<summary>
<para>The text of the <b>Shading</b> combo box item. The combo box editor is located on the Format tab of the Page Setup dialog.
<para><b>Default Value:</b> "Gray Scale"
</para>
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.Localization.SchedulerStringId.Caption_DailyPrintStyle">
<summary>
<para>The text of the <b>Style name</b> combo box item. The combo box editor is located on the Format tab of the Page Setup dialog.
<b>Default Value:</b> "Daily Style"
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.Localization.SchedulerStringId.Caption_DayViewDescription">
<summary>
<para>The <b>Day View</b> button description in the Scheduler Command UI.
<para><b>Default Value:</b> "Switch to the Day view. The most detailed view of appointments for a specific day(s)."
</para>
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.Localization.SchedulerStringId.Caption_DecreaseVisibleResourcesCount">
<summary>
<para>The Resource Navigator button caption.
<para><b>Default Value:</b> "Decrease visible resource count"
</para>
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.Localization.SchedulerStringId.Caption_EmptyResource">
<summary>
<para>The caption of the empty item in the <b>Resource</b> combo box located in the <b>Edit Appointment</b> dialog.
<para><b>Default Value:</b>"(Any)"
</para>
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.Localization.SchedulerStringId.Caption_Event">
<summary>
<para>A pattern for the <b>Add All Day Event</b> window caption.
<para><b>Default Value:</b> "{0} - Event"
</para>
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.Localization.SchedulerStringId.Caption_FirstVisibleResources">
<summary>
<para>The Resource Navigator button caption.
<para><b>Default Value:</b> "First"
</para>
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.Localization.SchedulerStringId.Caption_Free">
<summary>
<para>The <b>Free</b> appointment status caption.
<para><b>Default Value:</b> "Free"
</para>
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.Localization.SchedulerStringId.Caption_GanttViewDescription">
<summary>
<para>The <b>Gantt View</b> button description in the Scheduler Command UI.
<para><b>Default Value:</b> "Switch to the Gantt View. Project management view that shows appointments and their dependencies in relation to time."
</para>
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.Localization.SchedulerStringId.Caption_GroupByDate">
<summary>
<para>Text of the <b>Group by</b> combo box item. The combo box editor is located on the Resources tab of the Page Setup dialog.
<para><b>Default Value:</b> "Date"
</para>
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.Localization.SchedulerStringId.Caption_GroupByDateDescription">
<summary>
<para>The <b>Group by Date</b> button description in the Scheduler Command UI.
<para><b>Default Value:</b>"Group appointments by date."
</para>
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.Localization.SchedulerStringId.Caption_GroupByNone">
<summary>
<para>Text of the <b>Group by</b> combo box item. The combo box editor is located on the Resources tab of the Page Setup dialog.
<b>Default Value:</b> "None"
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.Localization.SchedulerStringId.Caption_GroupByNoneDescription">
<summary>
<para>The <b>Group by None</b> button description in the Scheduler Command UI.
<para><b>Default Value:</b> "Ungroup appointments."
</para>
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.Localization.SchedulerStringId.Caption_GroupByResourceDescription">
<summary>
<para>The <b>Group by Resource</b> button description in the Scheduler Command UI.
<para><b>Default Value:</b> "Group appointments by resource."
</para>
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.Localization.SchedulerStringId.Caption_GroupByResources">
<summary>
<para>Text of the <b>Group by</b> combo box item. The combo box editor is located on the Resources tab of the Page Setup dialog.
<b>Default Value:</b> "Resources"
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.Localization.SchedulerStringId.Caption_IncreaseVisibleResourcesCount">
<summary>
<para>The Resource Navigator button caption.
<para><b>Default Value:</b> "Increase visible resources count"
</para>
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.Localization.SchedulerStringId.Caption_LastVisibleResources">
<summary>
<para>The Resource Navigator button caption.
<para><b>Default Value:</b> "Last"
</para>
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.Localization.SchedulerStringId.Caption_MappingsValidation">
<summary>
<para>The caption of the smart tag displayed for the databound SchedulerControl at design time.
<para><b>Defaul Value:</b> "Mappings Validation"
</para>
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.Localization.SchedulerStringId.Caption_MappingsWizard">
<summary>
<para>The caption of the smart tag displayed for the databound SchedulerControl at design time.
<para><b>Default Value:</b> "Mappings Wizard..."
</para>
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.Localization.SchedulerStringId.Caption_MemoPrintStyle">
<summary>
<para>The text of the <b>Style name</b> combo box item. The combo box editor is located on the Format tab of the Page Setup dialog.
<para>
<b>Default Value:</b> "Memo Style"
</para>
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.Localization.SchedulerStringId.Caption_ModifyAppointmentDependencyMappingsTransactionDescription">
<summary>
<para>Identifies a transaction of the Visual Studio Designer.
<para><b>Default Value:</b> "Modify Appointment Dependency Mappings"
</para>
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.Localization.SchedulerStringId.Caption_ModifyAppointmentDependencyStorageTransactionDescription">
<summary>
<para>Identifies a transaction of the Visual Studio Designer.
<para><b>Default Value:</b> "Modify Appointment Dependency Storage"
</para>
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.Localization.SchedulerStringId.Caption_ModifyAppointmentMappingsTransactionDescription">
<summary>
<para>Identifies a transaction of the Visual Studio Designer.
<para><b>Default Value:</b> "Modify Appointment Mappings"
</para>
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.Localization.SchedulerStringId.Caption_ModifyAppointmentStorageTransactionDescription">
<summary>
<para>Identifies a transaction of the Visual Studio Designer.
<para><b>Default Value:</b> "Modify Appointment Storage"
</para>
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.Localization.SchedulerStringId.Caption_ModifyResourceMappingsTransactionDescription">
<summary>
<para>Identifies a transaction of the Visual Studio Designer.
<para><b>Default Value:</b> "Modify Resource Mappings"
</para>
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.Localization.SchedulerStringId.Caption_ModifyResourceStorageTransactionDescription">
<summary>
<para>Identifies a transaction of the Visual Studio Designer.
<para><b>Default Value:</b> "Modify Resource Storage"
</para>
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.Localization.SchedulerStringId.Caption_MonthlyPrintStyle">
<summary>
<para>The text of the <b>Style name</b> combo box item. The combo box editor is located on the Format tab of the Page Setup dialog.
<b>Default Value:</b> "Monthly Style"
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.Localization.SchedulerStringId.Caption_MonthViewDescription">
<summary>
<para>The <b>Month View</b> button description in the Scheduler Command UI.
<para><b>Default Value:</b> "Switch to the Month (Multi-Week) view. Calendar view useful for long-term plans."
</para>
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.Localization.SchedulerStringId.Caption_NAppointmentsAreSelected">
<summary>
<para>The text of the label on the Reminder Alert form. The text is displayed if two or more appointments are selected in the list.
<b>Default Value:</b> "{0} appointments are selected"
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.Localization.SchedulerStringId.Caption_NextAppointment">
<summary>
<para>The caption of the Navigation Button.
<para><b>Default Value:</b> "Next Appointment"</para>
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.Localization.SchedulerStringId.Caption_NextVisibleResources">
<summary>
<para>The tooltip text of the Resource Navigator button.
<para><b>Default Value:</b> "Next"
</para>
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.Localization.SchedulerStringId.Caption_NextVisibleResourcesPage">
<summary>
<para>The tooltip text of the Resource Navigator button.
<para><b>Default Value:</b> "Next Page"
</para>
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.Localization.SchedulerStringId.Caption_NoneRecurrence">
<summary>
<para>Text to print in the Memo style printout for non-recurring appointment.
<para><b>Default Value:</b> "(None)"
</para>
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.Localization.SchedulerStringId.Caption_NoneReminder">
<summary>
<para>Text caption of the item in the RepositoryItemDuration editor.
<para><b>Default Value:</b> "None"
</para>
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.Localization.SchedulerStringId.Caption_OnScreenResources">
<summary>
<para>Text of the <b>Resources kind</b> combo box item. The combo box editor is located on the Resources tab of the Page Setup dialog.
<para><b>Default Value:</b> "OnScreen resources"</para>
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.Localization.SchedulerStringId.Caption_OutOfOffice">
<summary>
<para>The <b>Out Of Office</b> appointment status caption.
<para><b>Default Value:</b> "Out Of Office"
</para>
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.Localization.SchedulerStringId.Caption_PleaseSeeAbove">
<summary>
<para>Text used in the <b>Memo Style</b> appointments printout.
<para><b>Default Value:</b> "Please see above"
</para>
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.Localization.SchedulerStringId.Caption_PrevAppointment">
<summary>
<para>The caption of the Navigation Button.
<para><b>Default Value:</b> Previous Appointment
</para>
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.Localization.SchedulerStringId.Caption_PrevVisibleResources">
<summary>
<para>The tooltip text of the Resource Navigator button.
<para><b>Default Value:</b> "Previous"</para>
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.Localization.SchedulerStringId.Caption_PrevVisibleResourcesPage">
<summary>
<para>The tooltip text of the Resource Navigator button.
<para><b>Default Value:</b> "Previous Page"
</para>
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.Localization.SchedulerStringId.Caption_ReadOnly">
<summary>
<para>Text used in the caption of the appointment editing form to indicate that the appointment is read-only.
<para><b>Default Value:</b> "[Read only]"
</para>
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.Localization.SchedulerStringId.Caption_Recurrence">
<summary>
<para><b>Default Value:</b> Recurrence
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.Localization.SchedulerStringId.Caption_RecurrenceEndTime">
<summary>
<para>Row header text for the <see cref="P:DevExpress.XtraScheduler.RecurrenceInfo.End"/> value in the Memo style printout, created as described in the How to: Print a Scheduler and Show its Print Preview document.
<para>
<b>Default Value</b>: "End:"
</para>
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.Localization.SchedulerStringId.Caption_RecurrenceLocation">
<summary>
<para>Row header text for the <see cref="P:DevExpress.XtraScheduler.Appointment.Location"/> value of the appointment pattern. Printed in the Memo style printout, created as described in the How to: Print a Scheduler and Show its Print Preview document.
<para>
<b>Default Value</b>: "Location:"
</para>
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.Localization.SchedulerStringId.Caption_RecurrencePattern">
<summary>
<para>Row header text for the recurrence pattern description. Printed in the Memo style printout, created as described in the How to: Print a Scheduler and Show its Print Preview document.
<para>
<b>Default Value</b>: "Recurrence Pattern:"
</para>
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.Localization.SchedulerStringId.Caption_RecurrenceShowTimeAs">
<summary>
<para>Row header text for the appointment status value. Printed in the Memo style printout, created as described in the How to: Print a Scheduler and Show its Print Preview document.
<para>
<b>Default Value</b>: "Show Time As:"
</para>
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.Localization.SchedulerStringId.Caption_RecurrenceStartTime">
<summary>
<para>Row header text for the <see cref="P:DevExpress.XtraScheduler.Appointment.Start"/> value of the appointment pattern. Printed in the Memo style printout, created as described in the How to: Print a Scheduler and Show its Print Preview document.
<para>
<b>Default Value</b>: "Start:"
</para>
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.Localization.SchedulerStringId.Caption_RecurrenceSubject">
<summary>
<para>Row header text for the <see cref="P:DevExpress.XtraScheduler.Appointment.Subject"/> value of the appointment pattern. Printed in the Memo style printout, created as described in the How to: Print a Scheduler and Show its Print Preview document.
<para>
<b>Default Value</b>: "Location:"
</para>
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.Localization.SchedulerStringId.Caption_Reminder">
<summary>
<para>The text used in the format string for the Reminder Alert form caption. The text is displayed if the form contains a single appointment.
<b>Default Value:</b> "Reminder:"
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.Localization.SchedulerStringId.Caption_Reminders">
<summary>
<para>The text used in the format string for the Reminder Alert form caption. The text is displayed if the form contains more than one appointment.
<b>Default Value:</b> "Reminders:"
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.Localization.SchedulerStringId.Caption_ResourceAll">
<summary>
<para>Denotes all resources in the <see cref="T:DevExpress.XtraScheduler.UI.ResourcesComboBoxControl"/> item list.
<b>Default Value:</b> "(All)"
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.Localization.SchedulerStringId.Caption_ResourceNone">
<summary>
<para>Text of the item that specifies that no resource is selected in the <see cref="T:DevExpress.XtraScheduler.UI.ResourcesComboBoxControl"/> or the <see cref="T:DevExpress.XtraScheduler.UI.ResourcesPopupCheckedListBoxControl"/>.
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.Localization.SchedulerStringId.Caption_SetupAppointmentDependencyStorage">
<summary>
<para>The caption of the Appointment Dependency Mapping Wizard window.
<b>Default Value:</b> "Setup Dependency Storage"
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.Localization.SchedulerStringId.Caption_SetupAppointmentMappings">
<summary>
<para>The caption of the Appointment Mapping Wizard window.
<b>Default Value:</b> "Setup Appointment Mappings"
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.Localization.SchedulerStringId.Caption_SetupAppointmentStorage">
<summary>
<para>The caption of the Appointment Mapping Wizard window.
<b>Default Value:</b> "Setup Appointment Storage"
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.Localization.SchedulerStringId.Caption_SetupDependencyMappings">
<summary>
<para>The caption of the Appointment Dependency Mapping Wizard window.
<b>Default Value:</b> "Setup Dependency Mappings"
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.Localization.SchedulerStringId.Caption_SetupResourceMappings">
<summary>
<para>The caption of the Resource Mapping Wizard window.
<b>Default Value:</b> "Setup Resource Mappings"
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.Localization.SchedulerStringId.Caption_SetupResourceStorage">
<summary>
<para>The caption of the Resource Mapping Wizard window.
<b>Default Value:</b> "Setup Resource Mappings"
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.Localization.SchedulerStringId.Caption_ShadingApplyToAllDayArea">
<summary>
<para>A text of the checkbox used in the Shading setup form to specify that the shading is applied to the all-day area. The Shading setup form is invoked from the Shading combobox editor located on the Page Setup form.
<b>Default Value:</b> "All Day Area"
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.Localization.SchedulerStringId.Caption_ShadingApplyToAppointments">
<summary>
<para>A text of the checkbox used in the Shading setup form to specify that shading is used to display appointments. The Shading setup form is invoked from the Shading combobox editor located on the Page Setup form.
<b>Default Value:</b> "Appointments"
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.Localization.SchedulerStringId.Caption_ShadingApplyToAppointmentStatuses">
<summary>
<para>A text of the checkbox used in the Shading setup form to specify that the shading is used to display appointment statuses. The Shading setup form is invoked from the Shading combobox editor located on the Page Setup form.
<b>Default Value:</b> "Appointment statuses"
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.Localization.SchedulerStringId.Caption_ShadingApplyToCells">
<summary>
<para>A text of the checkbox used in the Shading setup form to specify that shading is used to display cells. The Shading setup form is invoked from the Shading combobox editor located on the Page Setup form.
<b>Default Value:</b> "Cells"
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.Localization.SchedulerStringId.Caption_ShadingApplyToHeaders">
<summary>
<para>A text of the checkbox used in the Shading setup form to specify that shading is used to display View Headers. The Shading setup form is invoked from the Shading combobox editor located on the Page Setup form.
<b>Default Value:</b> "Headers"
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.Localization.SchedulerStringId.Caption_ShadingApplyToTimeRulers">
<summary>
<para>A text of the checkbox used in the Shading setup form to specify that shading is used to display Time Rulers. The Shading setup form is invoked from the Shading combobox editor located on the Page Setup form.
<b>Default Value:</b> "Time Rulers"
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.Localization.SchedulerStringId.Caption_SplitAppointment">
<summary>
<para>Menu caption of the <b>DevExpress.XtraScheduler.Commands.SplitAppointmentOperationCommand</b> command.
<b>Default Value:</b> "Split"
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.Localization.SchedulerStringId.Caption_StartTime">
<summary>
<para>Text used in a format string which displays appointment start time on the Reminder form.
<para><b>Default Value:</b> "Start:"
</para>
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.Localization.SchedulerStringId.Caption_Tentative">
<summary>
<para><para>The <b>Tentative</b> appointment status caption.</para>
<para><b>Default Value:</b> "Tentative"
</para>
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.Localization.SchedulerStringId.Caption_TimelineViewDescription">
<summary>
<para>The <b>Timeline View</b> button description in the Scheduler Command UI.
<para><b>Default Value</b> "Switch to the Timeline view. Plots appointments in relation to time."
</para>
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.Localization.SchedulerStringId.Caption_TrifoldPrintStyle">
<summary>
<para>The text of the <b>Style name</b> combo box item. The combo box editor is located on the Format tab of the Page Setup dialog.
<b>Default Value:</b> "Tri-fold Style"
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.Localization.SchedulerStringId.Caption_UntitledAppointment">
<summary>
<para>Text used in a caption of the Appointment form invoked for a newly created appointment.
<para><b>Default Value:</b> "Untitled"
</para>
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.Localization.SchedulerStringId.Caption_VisibleResources">
<summary>
<para>Text of the <b>Resources kind</b> combo box item. The combo box editor is located on the Resources tab of the Page Setup dialog.
<para><b>Default Value:</b> "Visible resources"</para>
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.Localization.SchedulerStringId.Caption_WeekDaysEveryDay">
<summary>
<para>The text of the item specifying the <see cref="F:DevExpress.XtraScheduler.WeekDays.EveryDay"/> value in the <see cref="T:DevExpress.XtraScheduler.UI.WeekDaysEdit"/> control.
<para><b>Default Value:</b> "Day"
</para>
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.Localization.SchedulerStringId.Caption_WeekDaysWeekendDays">
<summary>
<para>The text of the item specifying the <see cref="F:DevExpress.XtraScheduler.WeekDays.WeekendDays"/> value in the <see cref="T:DevExpress.XtraScheduler.UI.WeekDaysEdit"/> control.
<para><b>Default Value:</b> "Weekend day"
</para>
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.Localization.SchedulerStringId.Caption_WeekDaysWorkDays">
<summary>
<para>The text of the item specifying the <see cref="F:DevExpress.XtraScheduler.WeekDays.WorkDays"/> value in the <see cref="T:DevExpress.XtraScheduler.UI.WeekDaysEdit"/> control.
<para><b>Default Value:</b> "Weekday"
</para>
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.Localization.SchedulerStringId.Caption_WeeklyPrintStyle">
<summary>
<para>The text of the <b>Style name</b> combo box item. The combo box editor is located on the Format tab of the Page Setup dialog.
<b>Default Value:</b>"Weekly Style"
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.Localization.SchedulerStringId.Caption_WeekOfMonthFirst">
<summary>
<para>The text of the item specifying the <see cref="F:DevExpress.XtraScheduler.WeekOfMonth.First"/> enumeration value in the <see cref="T:DevExpress.XtraScheduler.UI.WeekOfMonthEdit"/> control.
<para><b>Default Value:</b> "First"
</para>
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.Localization.SchedulerStringId.Caption_WeekOfMonthFourth">
<summary>
<para>The text of the item specifying the <see cref="F:DevExpress.XtraScheduler.WeekOfMonth.Fourth"/> enumeration value in the <see cref="T:DevExpress.XtraScheduler.UI.WeekOfMonthEdit"/> control.
<para><b>Default Value:</b> "Fourth"
</para>
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.Localization.SchedulerStringId.Caption_WeekOfMonthLast">
<summary>
<para>The text of the item specifying the <see cref="F:DevExpress.XtraScheduler.WeekOfMonth.Last"/> enumeration value in the <see cref="T:DevExpress.XtraScheduler.UI.WeekOfMonthEdit"/> control.
<para><b>Default Value:</b> "Last"
</para>
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.Localization.SchedulerStringId.Caption_WeekOfMonthSecond">
<summary>
<para>The text of the item specifying the <see cref="F:DevExpress.XtraScheduler.WeekOfMonth.Second"/> enumeration value in the <see cref="T:DevExpress.XtraScheduler.UI.WeekOfMonthEdit"/> control.
<para><b>Default Value:</b> "Second"
</para>
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.Localization.SchedulerStringId.Caption_WeekOfMonthThird">
<summary>
<para>The text of the item specifying the <see cref="F:DevExpress.XtraScheduler.WeekOfMonth.Third"/> enumeration value in the <see cref="T:DevExpress.XtraScheduler.UI.WeekOfMonthEdit"/> control.
<para><b>Default Value:</b> "Third"
</para>
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.Localization.SchedulerStringId.Caption_WeekViewDescription">
<summary>
<para>The <b>Week View</b> button description in the Scheduler Command UI.
<para><b>Default Value:</b> "Switch to the Week view. Arranges appointments for a particular week in a compact form."
</para>
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.Localization.SchedulerStringId.Caption_WorkingElsewhere">
<summary>
<para>The <b>Working Elsewhere</b> appointment status caption.
<para><b>Default Value:</b> "Working Elsewhere"
</para>
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.Localization.SchedulerStringId.Caption_WorkWeekViewDescription">
<summary>
<para>The <b>Work Week View</b> button description in the Scheduler Command UI.
<para><b>Default Value:</b> "Switch to the Work Week view. Detailed view for the working days in a certain week."
</para>
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.Localization.SchedulerStringId.DateTimeAutoFormat_Week">
<summary>
<para><para>A list of format strings used to display a date in the <see cref="T:DevExpress.XtraScheduler.TimeScaleWeek"/> caption within the Timeline view. A format string is automatically selected from the list for each time scale header. The selection criteria is the length of the visual representation of the date which uses a particular format string. The string must fit the time scale header.</para>
<para>The format strings are:</para>
<para>dddd, MMMM d, yyyy\r\ndddd, MMMM d\r\ndddd, MMM d\r\nddd, MMMM d\r\nddd, MMM d\r\nddd, MM d\r\nMM/dd\r\nM/d</para>
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.Localization.SchedulerStringId.DateTimeAutoFormat_WithoutYear">
<summary>
<para><para>A list of format strings used to display a date in the <see cref="T:DevExpress.XtraScheduler.TimeScaleDay"/> caption within the Timeline view. A format string is automatically selected from the list for each time scale header. The selection criteria is the length of the visual representation of the date which uses a particular format string. The string must fit the time scale header.</para>
<para>The format strings are:</para>
<para>dddd, MMMM d\r\nddd, MMMM d\r\nddd d\r\nM/d\r\ndd</para>
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.Localization.SchedulerStringId.DefaultToolTipStringFormat_SplitAppointment">
<summary>
<para>A format string used to display a tooltip for the appointment split tool.
<para><b>Default Value:</b> "{0} : step {1}"
</para>
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.Localization.SchedulerStringId.DescCmd_CellsAutoHeight">
<summary>
<para>The <b>DevExpress.XtraScheduler.Commands..witchCellsAutoHeightCommand</b> command description displayed as a tooltip of the command button in the Scheduler Command UI.
<para><b>Default Value:</b> "Enable a time cell to automatically adjust its size to accommodate appointments it contains."
</para>
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.Localization.SchedulerStringId.DescCmd_ChangeAppointmentReminderUI">
<summary>
<para>The <b>DevExpress.XtraScheduler.Commands.ChangeAppointmentReminderUICommand</b> command description.
<para><b>Default Value:</b> "Choose when to be reminded of the selected appointment."
</para>
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.Localization.SchedulerStringId.DescCmd_ChangeSnapToCellsUI">
<summary>
<para>The <b>DevExpress.XtraScheduler.Commands.ChangeSnapToCellsUICommand</b> command description.
<para><b>Default Value:</b> "Specify a snapping mode for displaying appointments within time cells."
</para>
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.Localization.SchedulerStringId.DescCmd_ChangeTimelineScaleWidth">
<summary>
<para>The <b>DevExpress.XtraScheduler.Commands.ChangeTimelineScaleWidthUICommand</b> command description.
<para><b>Default Value:</b> "Specify column width in pixels for the base scale."
</para>
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.Localization.SchedulerStringId.DescCmd_CompressWeekend">
<summary>
<para>The <b>DevExpress.XtraScheduler.Commands.SwitchCompressWeekendCommand</b> command description.
<para><b>Default Value:</b> "Show Saturday and Sunday compressed into a single column."
</para>
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.Localization.SchedulerStringId.DescCmd_CreateAppointmentDependency">
<summary>
<para>A description of the <b>DevExpress.XtraScheduler.Commands.AppointmentCreateDependencyOperationCommand</b> command.
<para><b>Default Value:</b> "Create dependency between appointments"
</para>
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.Localization.SchedulerStringId.DescCmd_DeleteAppointment">
<summary>
<para>The tooltip text of the <b>DevExpress.XtraScheduler.Commands.DeleteAppointmentsCommandBase</b> command.
<para><b>Default Value:</b> "Show Saturday and Sunday compressed into a single column."
</para>
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.Localization.SchedulerStringId.DescCmd_DeleteAppointmentDependency">
<summary>
<para>A description of the <b>DevExpress.XtraScheduler.Commands.DeleteAppointmentDependenciesCommand</b> command.
<para><b>Default Value:</b> "Delete appointment dependency."
</para>
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.Localization.SchedulerStringId.DescCmd_DeleteOccurrence">
<summary>
<para>A description of the <b>DevExpress.XtraScheduler.Commands.Internal.DeleteOccurrenceUICommand</b> command.
<para><b>Default Value:</b> "Delete Occurrence."
</para>
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.Localization.SchedulerStringId.DescCmd_DeleteSeries">
<summary>
<para>A description of the <b>DevExpress.XtraScheduler.Commands.Internal.DeleteSeriesUICommand</b> command.
<para><b>Default Value:</b> "Create dependency between appointments"
</para>
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.Localization.SchedulerStringId.DescCmd_EditAppointmentDependency">
<summary>
<para>A description of the <b>DevExpress.XtraScheduler.Commands.EditAppointmentDependencyCommand</b> command.
<para><b>Default Value:</b> "Edit appointment dependency."
</para>
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.Localization.SchedulerStringId.DescCmd_GotoToday">
<summary>
<para>A description of the <b>DevExpress.XtraScheduler.Commands.GotoTodayCommand</b> command.
<para><b>Default Value:</b> "Change the date displayed in the current view to the current date."
</para>
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.Localization.SchedulerStringId.DescCmd_LabelAs">
<summary>
<para>A description of the <b>DevExpress.XtraScheduler.Commands.ChangeAppointmentLabelUICommand</b> command.
<para><b>Default Value:</b> "Change the selected appointment label."
</para>
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.Localization.SchedulerStringId.DescCmd_NavigateBackward">
<summary>
<para>A description of the <b>DevExpress.XtraScheduler.Commands.Internal.ServiceNavigateViewBackwardCommand</b> command.
<para><b>Default Value:</b> "Step back in time as suggested by the current view."
</para>
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.Localization.SchedulerStringId.DescCmd_NavigateForward">
<summary>
<para>A description of the <b>DevExpress.XtraScheduler.Commands.Internal.ServiceNavigateViewForwardCommand</b> command.
<para><b>Default Value:</b> "Advance forward in time as suggested by the current view."
</para>
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.Localization.SchedulerStringId.DescCmd_NewAppointment">
<summary>
<para>A description of the <b>DevExpress.XtraScheduler.Commands.NewAppointmentCommand</b> command.
<para><b>Default Value:</b> "Create a new appointment."
</para>
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.Localization.SchedulerStringId.DescCmd_NewRecurringAppointment">
<summary>
<para>A description of the <b>DevExpress.XtraScheduler.Commands.NewRecurringAppointmentCommand</b> command.
<para><b>Default Value:</b> "Create a new recurring appointment."
</para>
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.Localization.SchedulerStringId.DescCmd_OpenAppointment">
<summary>
<para>A description of the <b>DevExpress.XtraScheduler.Commands.EditSingleAppointmentCommand</b> command.
<para><b>Default Value:</b> "Open the selected appointment."
</para>
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.Localization.SchedulerStringId.DescCmd_OpenOccurrence">
<summary>
<para>A description of the <b>DevExpress.XtraScheduler.Commands.EditOccurrenceUICommand</b> command.
<para><b>Default Value:</b> "Open this meeting occurrence."
</para>
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.Localization.SchedulerStringId.DescCmd_OpenSchedule">
<summary>
<para>A description of the <b>DevExpress.XtraScheduler.Commands.OpenScheduleCommand</b> command.
<para><b>Default Value:</b> "Import a schedule from a file (.ics)."
</para>
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.Localization.SchedulerStringId.DescCmd_OpenSeries">
<summary>
<para>A description of the <b>DevExpress.XtraScheduler.Internal.Commands.EditSeriesUICommand</b> command.
<para><b>Default Value:</b> "Open this meeting series."
</para>
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.Localization.SchedulerStringId.DescCmd_Print">
<summary>
<para>A description of the <b>DevExpress.XtraScheduler.Commands.PrintCommand</b> command.
<para><b>Default Value:</b> "Send the schedule directly to the default printer without making changes."
</para>
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.Localization.SchedulerStringId.DescCmd_PrintPageSutup">
<summary>
<para>A description of the <b>DevExpress.XtraScheduler.Commands.PrintPageSetupCommand</b> command.
<para><b>Default Value:</b> "Customize the page appearance and configure various printing options."
</para>
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.Localization.SchedulerStringId.DescCmd_PrintPreview">
<summary>
<para>A description of the <b>DevExpress.XtraScheduler.Commands.PrintPreviewCommand</b> command.
<para><b>Default Value:</b> "Preview and make changes to pages before printing."
</para>
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.Localization.SchedulerStringId.DescCmd_SaveSchedule">
<summary>
<para>A description of the <b>DevExpress.XtraScheduler.Commands.SaveScheduleCommand</b> command.
<para><b>Default Value:</b> "Save a schedule to a file (.ics)."
</para>
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.Localization.SchedulerStringId.DescCmd_ShowTimeAs">
<summary>
<para>A description of the <b>DevExpress.XtraScheduler.Commands.ChangeAppointmentStatusUICommand</b> command.
<para><b>Default Value:</b> "Change the selected appointment status."
</para>
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.Localization.SchedulerStringId.DescCmd_ShowWorkTimeOnly">
<summary>
<para>A description of the <b>DevExpress.XtraScheduler.Commands.SwitchShowWorkTimeOnlyCommand</b> command.
<para><b>Default Value:</b> "Show only working hours in the calendar."
</para>
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.Localization.SchedulerStringId.DescCmd_SplitAppointment">
<summary>
<para>A description of the <b>DevExpress.XtraScheduler.Commands.SplitAppointmentOperationCommand</b> command.
<para><b>Default Value:</b> "Split the selected appointment in two by dragging a splitter line."
</para>
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.Localization.SchedulerStringId.DescCmd_TimeScalesMenu">
<summary>
<para>A description of the <b>DevExpress.XtraScheduler.Commands.SwitchTimeScalesUICommand</b> command.
<para><b>Default Value:</b> "Change the time scale."
</para>
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.Localization.SchedulerStringId.DescCmd_ToggleRecurrence">
<summary>
<para>A description of the <b>DevExpress.XtraScheduler.Commands.ToggleRecurrenceCommand</b> command.
<para><b>Default Value:</b> "Make the selected appointment recurring, or edit the recurrence pattern. "
</para>
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.Localization.SchedulerStringId.DescCmd_ViewZoomIn">
<summary>
<para>A description of the <b>DevExpress.XtraScheduler.Commands.ViewZoomInCommand</b> command.
<para><b>Default Value:</b> "Perform scaling up to display content in more detail."
</para>
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.Localization.SchedulerStringId.DescCmd_ViewZoomOut">
<summary>
<para>A description of the <b>DevExpress.XtraScheduler.Commands.ViewZoomOutCommand</b> command.
<para><b>Default Value:</b> "Perform scaling down to display a broader look of the View."
</para>
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.Localization.SchedulerStringId.DisplayName_Appointment">
<summary>
<para>
<para><b>Default Value:</b> "Appointment."
</para>
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.Localization.SchedulerStringId.Format_CopyNOf">
<summary>
<para>Format string used to display a new style name in the <b>Define Print Style</b> dialog invoked by clicking the Define Styles... button on the Format tab of the Page Setup dialog.
<para>
<b>Default Value:</b> "Copy ({0}) of {1}"
</para>
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.Localization.SchedulerStringId.Format_CopyOf">
<summary>
<para>Format string used to display a new style name in the <b>Define Print Style</b> dialog invoked by clicking the Define Styles... button on the Format tab of the Page Setup dialog.
<para>
<b>Default Value:</b> "Copy of {0}"
</para>
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.Localization.SchedulerStringId.Format_TimeBeforeStart">
<summary>
<para>Format string used to display items in the <b>Click Snooze to be reminded again in:</b> combo box of the <b>Reminder</b> form.
<para>
<b>Default Value:</b> "{0} before start"
</para>
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.Localization.SchedulerStringId.MemoPrintDateFormat">
<summary>
<para>Format string used to print Start and End values in the Memo print style.
<para>
<b>Default Value:</b> "{0} {1} {2}"
</para>
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.Localization.SchedulerStringId.MenuCmd_10Minutes">
<summary>
<para>The text of a menu item specifying a time scale with 10 minute increments.
<para>
<b>Default Value:</b> "10 &Minutes"
</para>
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.Localization.SchedulerStringId.MenuCmd_15Minutes">
<summary>
<para>The text of a menu item specifying a time scale with 15 minute increments.
<para>
<b>Default Value:</b> "&15 Minutes"
</para>
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.Localization.SchedulerStringId.MenuCmd_20Minutes">
<summary>
<para>The text of a menu item specifying a time scale with 20 minute increments.
<para>
<b>Default Value:</b> "&20 Minutes"
</para>
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.Localization.SchedulerStringId.MenuCmd_30Minutes">
<summary>
<para>The text of a menu item specifying a time scale with 30 minute increments.
<para>
<b>Default Value:</b> "&30 Minutes"
</para>
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.Localization.SchedulerStringId.MenuCmd_5Minutes">
<summary>
<para>The text of a menu item specifying a time scale with 5 minute increments.
<para>
<b>Default Value:</b> "&5 Minutes"
</para>
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.Localization.SchedulerStringId.MenuCmd_60Minutes">
<summary>
<para>The text of a menu item specifying a time scale with 60 minute increments.
<para>
<b>Default Value:</b> "6&0 Minutes"
</para>
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.Localization.SchedulerStringId.MenuCmd_6Minutes">
<summary>
<para>The text of a menu item specifying a time scale with 6 minute increments.
<para>
<b>Default Value:</b> "&6 Minutes"
</para>
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.Localization.SchedulerStringId.MenuCmd_AppointmentCancel">
<summary>
<para>The menu caption of the <b>DevExpress.XtraScheduler.Commands.AppointmentDragCancelCommand</b> command.
<para>
<b>Default Value:</b> "C&ancel"
</para>
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.Localization.SchedulerStringId.MenuCmd_AppointmentCopy">
<summary>
<para>The menu caption of the <b>DevExpress.XtraScheduler.Commands.AppointmentDragCopyCommand</b> command.
<para>
<b>Default Value:</b> "&Copy"
</para>
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.Localization.SchedulerStringId.MenuCmd_AppointmentLabelAnniversary">
<summary>
<para>The menu caption of the <b>DevExpress.XtraScheduler.Commands.ChangeAppointmentLabelCommand</b> command.
<para>
<b>Default Value:</b> "&Copy"
</para>
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.Localization.SchedulerStringId.MenuCmd_AppointmentLabelBirthday">
<summary>
<para>The menu caption of the <b>DevExpress.XtraScheduler.Commands.ChangeAppointmentLabelCommand</b> command.
<para>
<b>Default Value:</b> "&Birthday"
</para>
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.Localization.SchedulerStringId.MenuCmd_AppointmentLabelBusiness">
<summary>
<para>The menu caption of the <b>DevExpress.XtraScheduler.Commands.ChangeAppointmentLabelCommand</b> command.
<para>
<b>Default Value:</b> "&Business"
</para>
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.Localization.SchedulerStringId.MenuCmd_AppointmentLabelImportant">
<summary>
<para>The menu caption of the <b>DevExpress.XtraScheduler.Commands.ChangeAppointmentLabelCommand</b> command.
<para>
<b>Default Value:</b> "&Important"
</para>
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.Localization.SchedulerStringId.MenuCmd_AppointmentLabelMustAttend">
<summary>
<para>The menu caption of the <b>DevExpress.XtraScheduler.Commands.ChangeAppointmentLabelCommand</b> command.
<para>
<b>Default Value:</b> "Must &Attend"
</para>
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.Localization.SchedulerStringId.MenuCmd_AppointmentLabelNeedsPreparation">
<summary>
<para>The menu caption of the <b>DevExpress.XtraScheduler.Commands.ChangeAppointmentLabelCommand</b> command.
<para>
<b>Default Value:</b> "&Needs Preparation"
</para>
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.Localization.SchedulerStringId.MenuCmd_AppointmentLabelNone">
<summary>
<para>The menu caption of the <b>DevExpress.XtraScheduler.Commands.ChangeAppointmentLabelCommand</b> command.
<para>
<b>Default Value:</b> "&None"
</para>
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.Localization.SchedulerStringId.MenuCmd_AppointmentLabelPersonal">
<summary>
<para>The menu caption of the <b>DevExpress.XtraScheduler.Commands.ChangeAppointmentLabelCommand</b> command.
<para>
<b>Default Value:</b> "&Personal"
</para>
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.Localization.SchedulerStringId.MenuCmd_AppointmentLabelPhoneCall">
<summary>
<para>The menu caption of the <b>DevExpress.XtraScheduler.Commands.ChangeAppointmentLabelCommand</b> command.
<para>
<b>Default Value:</b> "Phone &Call"
</para>
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.Localization.SchedulerStringId.MenuCmd_AppointmentLabelTravelRequired">
<summary>
<para>The menu caption of the <b>DevExpress.XtraScheduler.Commands.ChangeAppointmentLabelCommand</b> command.
<para>
<b>Default Value:</b> "&Travel Required"
</para>
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.Localization.SchedulerStringId.MenuCmd_AppointmentLabelVacation">
<summary>
<para>The menu caption of the <b>DevExpress.XtraScheduler.Commands.ChangeAppointmentLabelCommand</b> command.
<para>
<b>Default Value:</b> "&Vacation"
</para>
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.Localization.SchedulerStringId.MenuCmd_AppointmentMove">
<summary>
<para>The menu caption of the <b>DevExpress.XtraScheduler.Commands.AppointmentDragMoveCommand</b> command.
<para>
<b>Default Value:</b> "Mo&ve"
</para>
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.Localization.SchedulerStringId.MenuCmd_Busy">
<summary>
<para>The menu caption of the <b>DevExpress.XtraScheduler.Commands.ChangeAppointmentStatusCommand</b> command.
<para>
<b>Default Value:</b> "&Busy"
</para>
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.Localization.SchedulerStringId.MenuCmd_CellsAutoHeight">
<summary>
<para>The menu caption of the <b>DevExpress.XtraScheduler.Commands.SwitchCellsAutoHeightCommand</b> command.
<para>
<b>Default Value:</b> "Cell Auto Height"
</para>
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.Localization.SchedulerStringId.MenuCmd_ChangeAppointmentReminderUI">
<summary>
<para>The menu caption of the <b>DevExpress.XtraScheduler.Commands.ChangeAppointmentReminderUICommand</b> command.
<para>
<b>Default Value:</b> "Reminder"
</para>
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.Localization.SchedulerStringId.MenuCmd_ChangeSnapToCellsUI">
<summary>
<para>The menu caption of the <b>DevExpress.XtraScheduler.Commands.ChangeSnapToCellsUICommand</b> command.
<para>
<b>Default Value:</b> "Snap to Cells"
</para>
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.Localization.SchedulerStringId.MenuCmd_ChangeTimelineScaleWidth">
<summary>
<para>The menu caption of the <b>DevExpress.XtraScheduler.Commands.ChangeTimelineScaleWidthUICommand</b> command.
<para>
<b>Default Value:</b> "Scale Width"
</para>
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.Localization.SchedulerStringId.MenuCmd_CompressWeekend">
<summary>
<para>The menu caption of the <b>DevExpress.XtraScheduler.Commands.SwitchCompressWeekendCommand</b> command.
<para>
<b>Default Value:</b> "Compress Weekend"
</para>
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.Localization.SchedulerStringId.MenuCmd_CreateAppointmentDependency">
<summary>
<para>The menu caption of the <b>DevExpress.XtraScheduler.Commands.AppointmentCreateDependencyOperationCommand</b> command.
<para>
<b>Default Value:</b> "Create Dependency"
</para>
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.Localization.SchedulerStringId.MenuCmd_CustomizeCurrentView">
<summary>
<para><para>
<b>Default Value:</b> "&Customize Current View..."
</para>
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.Localization.SchedulerStringId.MenuCmd_CustomizeTimeRuler">
<summary>
<para><para>
<b>Default Value:</b> "Customize Time Ruler..."
</para>
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.Localization.SchedulerStringId.MenuCmd_DeleteAppointment">
<summary>
<para>The menu caption of the <b>DevExpress.XtraScheduler.Commands.DeleteAppointmentsCommandBase</b> command.
<para>
<b>Default Value:</b> "&Delete"
</para>
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.Localization.SchedulerStringId.MenuCmd_DeleteAppointmentDependency">
<summary>
<para>The menu caption of the <b>DevExpress.XtraScheduler.Commands.DeleteAppointmentDependenciesCommand</b> command.
<para>
<b>Default Value:</b> "&Delete"
</para>
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.Localization.SchedulerStringId.MenuCmd_DeleteOccurrence">
<summary>
<para>The menu caption of the <b>DevExpress.XtraScheduler.Commands.internal.DeleteOccurrenceUICommand</b> command.
<para>
<b>Default Value:</b> "Delete Occurrence"
</para>
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.Localization.SchedulerStringId.MenuCmd_DeleteSeries">
<summary>
<para>The menu caption of the <b>DevExpress.XtraScheduler.Commands.DeleteSeriesUICommand</b> command.
<para>
<b>Default Value:</b> "Delete Series"
</para>
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.Localization.SchedulerStringId.MenuCmd_EditAppointmentDependency">
<summary>
<para>The menu caption of the <b>DevExpress.XtraScheduler.Commands.EditAppointmentDependencyCommand</b> command.
<para>
<b>Default Value:</b> "&Edit"
</para>
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.Localization.SchedulerStringId.MenuCmd_EditSeries">
<summary>
<para>The menu caption of the <b>DevExpress.XtraScheduler.Commands.EditRecurrencePatternCommand</b> command.
<para>
<b>Default Value:</b> "&Edit Series"
</para>
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.Localization.SchedulerStringId.MenuCmd_Free">
<summary>
<para>The menu caption of the <b>DevExpress.XtraScheduler.Commands.ChangeAppointmentStatusCommand</b> command.
<para>
<b>Default Value:</b> "&Free"
</para>
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.Localization.SchedulerStringId.MenuCmd_GotoDate">
<summary>
<para>The menu caption of the <b>DevExpress.XtraScheduler.Commands.GotoDateCommand</b> command.
<para>
<b>Default Value:</b> "&Go to Date..."
</para>
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.Localization.SchedulerStringId.MenuCmd_GotoThisDay">
<summary>
<para>The menu caption of the <b>DevExpress.XtraScheduler.Commands.GotoThisDayCommand</b> command.
<para>
<b>Default Value:</b> "Go to This &Day"
</para>
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.Localization.SchedulerStringId.MenuCmd_GotoToday">
<summary>
<para>The menu caption of the <b>DevExpress.XtraScheduler.Commands.GotoTodayCommand</b> command.
<para>
<b>Default Value:</b> "Go to &Today"
</para>
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.Localization.SchedulerStringId.MenuCmd_LabelAs">
<summary>
<para>The menu caption of the <b>DevExpress.XtraScheduler.Commands.ChangeAppointmentLabelUICommand</b> command.
<para>
<b>Default Value:</b> "&Label As"
</para>
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.Localization.SchedulerStringId.MenuCmd_NavigateBackward">
<summary>
<para>The menu caption of the <b>DevExpress.XtraScheduler.Commands.ServiceNavigateViewBackwardCommand</b> command.
<para>
<b>Default Value:</b> "Backward"
</para>
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.Localization.SchedulerStringId.MenuCmd_NavigateForward">
<summary>
<para>The menu caption of the <b>DevExpress.XtraScheduler.Commands.ServiceNavigateViewForwardCommand</b> command.
<para>
<b>Default Value:</b> "Forward"
</para>
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.Localization.SchedulerStringId.MenuCmd_NewAllDayEvent">
<summary>
<para>The menu caption of the <b>DevExpress.XtraScheduler.Commands.NewAllDayAppointmentCommand</b> command.
<para>
<b>Default Value:</b> "New All Day &Event"
</para>
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.Localization.SchedulerStringId.MenuCmd_NewAppointment">
<summary>
<para>The menu caption of the <b>DevExpress.XtraScheduler.Commands.NewAppointmentCommand</b> command.
<para>
<b>Default Value:</b> "New App&ointment"
</para>
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.Localization.SchedulerStringId.MenuCmd_NewRecurringAppointment">
<summary>
<para>The menu caption of the <b>DevExpress.XtraScheduler.Commands.NewRecurringAppointmentCommand</b> command.
<para>
<b>Default Value:</b> "New Recurring &Appointment"
</para>
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.Localization.SchedulerStringId.MenuCmd_NewRecurringEvent">
<summary>
<para>The menu caption of the <b>DevExpress.XtraScheduler.Commands.NewRecurringAllDayAppointmentCommand</b> command.
<para>
<b>Default Value:</b> "New Recurring E&vent"
</para>
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.Localization.SchedulerStringId.MenuCmd_None">
<summary>
<para>The menu caption of a command that does not have caption.
<para>
<b>Default Value:</b> empty string
</para>
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.Localization.SchedulerStringId.MenuCmd_OpenAppointment">
<summary>
<para>The menu caption of the <b>DevExpress.XtraScheduler.Commands.EditSingleAppointmentCommand</b> command.
<para>
<b>Default Value:</b> "&Open"
</para>
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.Localization.SchedulerStringId.MenuCmd_OpenOccurrence">
<summary>
<para>The menu caption of the <b>DevExpress.XtraScheduler.Commands.EditOccurrenceUICommand</b> command.
<para>
<b>Default Value:</b> "Open Occurrence"
</para>
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.Localization.SchedulerStringId.MenuCmd_OpenSchedule">
<summary>
<para>The menu caption of the <b>DevExpress.XtraScheduler.Commands.OpenScheduleCommand</b> command.
<para>
<b>Default Value:</b> "Open"
</para>
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.Localization.SchedulerStringId.MenuCmd_OpenSeries">
<summary>
<para>The menu caption of the <b>DevExpress.XtraScheduler.Commands.EditSeriesUICommand</b> command.
<para>
<b>Default Value:</b> "Open Series"
</para>
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.Localization.SchedulerStringId.MenuCmd_OtherSettings">
<summary>
<para><para>
<b>Default Value:</b> "Other Sett&ings..."
</para>
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.Localization.SchedulerStringId.MenuCmd_OutOfOffice">
<summary>
<para>The menu caption of the <b>DevExpress.XtraScheduler.Commands.ChangeAppointmentStatusCommand</b> command.
<para>
<b>Default Value:</b> "&Out Of Office"
</para>
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.Localization.SchedulerStringId.MenuCmd_Print">
<summary>
<para>The menu caption of the <b>DevExpress.XtraScheduler.Commands.PrintCommand</b> command.
<para>
<b>Default Value:</b> "Quick Print"
</para>
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.Localization.SchedulerStringId.MenuCmd_PrintAppointment">
<summary>
<para><para>
<b>Default Value:</b> "&Print"
</para>
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.Localization.SchedulerStringId.MenuCmd_PrintPageSetup">
<summary>
<para>The menu caption of the <b>DevExpress.XtraScheduler.Commands.PrintPageSetupCommand</b> command.
<para>
<b>Default Value:</b> "Page &Setup"
</para>
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.Localization.SchedulerStringId.MenuCmd_PrintPreview">
<summary>
<para>The menu caption of the <b>DevExpress.XtraScheduler.Commands.PrintPreviewCommand</b> command.
<para>
<b>Default Value:</b> "Print &Preview"
</para>
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.Localization.SchedulerStringId.MenuCmd_RestoreOccurrence">
<summary>
<para>The menu caption of the <b>DevExpress.XtraScheduler.Commands.RestoreOccurrenceCommand</b> command.
<para>
<b>Default Value:</b> "&Restore Default State"
</para>
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.Localization.SchedulerStringId.MenuCmd_SaveSchedule">
<summary>
<para>The menu caption of the <b>DevExpress.XtraScheduler.Commands.SaveScheduleCommand</b> command.
<para>
<b>Default Value:</b> "Save"
</para>
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.Localization.SchedulerStringId.MenuCmd_ShowTimeAs">
<summary>
<para>The menu caption of the <b>DevExpress.XtraScheduler.Commands.ChangeAppointmentStatusUICommand</b> command.
<para>
<b>Default Value:</b> "&Show Time As"
</para>
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.Localization.SchedulerStringId.MenuCmd_ShowWorkTimeOnly">
<summary>
<para>The menu caption of the <b>DevExpress.XtraScheduler.Commands.SwitchShowWorkTimeOnlyCommand</b> command.
<para>
<b>Default Value:</b> "Working Hours"
</para>
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.Localization.SchedulerStringId.MenuCmd_SwitchToDayView">
<summary>
<para>The menu caption of the <b>DevExpress.XtraScheduler.Commands.SwitchViewCommand</b> command.
<para>
<b>Default Value:</b> "&Day View"
</para>
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.Localization.SchedulerStringId.MenuCmd_SwitchToGanttView">
<summary>
<para>The menu caption of the <b>DevExpress.XtraScheduler.Commands.SwitchViewCommand</b> command.
<para>
<b>Default Value:</b> "&Gantt View"
</para>
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.Localization.SchedulerStringId.MenuCmd_SwitchToGroupByDate">
<summary>
<para>The menu caption of the <b>DevExpress.XtraScheduler.Commands.SwitchToGroupByDateCommand</b> command.
<para>
<b>Default Value:</b> "&Group by Date"
</para>
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.Localization.SchedulerStringId.MenuCmd_SwitchToGroupByNone">
<summary>
<para>The menu caption of the <b>DevExpress.XtraScheduler.Commands.SwitchToGroupByNoneCommand</b> command.
<para>
<b>Default Value:</b> "&Group by None"
</para>
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.Localization.SchedulerStringId.MenuCmd_SwitchToGroupByResource">
<summary>
<para>The menu caption of the <b>DevExpress.XtraScheduler.Commands.SwitchTOGroupByResourceCommand</b> command.
<para>
<b>Default Value:</b> "&Group by Resource"
</para>
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.Localization.SchedulerStringId.MenuCmd_SwitchToMonthView">
<summary>
<para>The menu caption of the <b>DevExpress.XtraScheduler.Commands.SwitchViewCommand</b> command.
<para>
<b>Default Value:</b> "&Month View"
</para>
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.Localization.SchedulerStringId.MenuCmd_SwitchToTimelineView">
<summary>
<para>The menu caption of the <b>DevExpress.XtraScheduler.Commands.SwitchViewCommand</b> command.
<para>
<b>Default Value:</b> "&Timeline View"
</para>
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.Localization.SchedulerStringId.MenuCmd_SwitchToWeekView">
<summary>
<para>The menu caption of the <b>DevExpress.XtraScheduler.Commands.SwitchViewCommand</b> command.
<para>
<b>Default Value:</b> "&Month View"
</para>
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.Localization.SchedulerStringId.MenuCmd_SwitchToWorkWeekView">
<summary>
<para>The menu caption of the <b>DevExpress.XtraScheduler.Commands.SwitchViewCommand</b> command.
<para>
<b>Default Value:</b> "Wo&rk Week View"
</para>
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.Localization.SchedulerStringId.MenuCmd_SwitchViewMenu">
<summary>
<para>The menu caption of the <b>DevExpress.XtraScheduler.Commands.SwitchViewCommand</b> and the <b>DevExpress.XtraScheduler.Commands.SwitchTimeScaleCommand</b> commands.
<para>
<b>Default Value:</b> "Change View To"
</para>
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.Localization.SchedulerStringId.MenuCmd_Tentative">
<summary>
<para>The menu caption of the <b>DevExpress.XtraScheduler.Commands.ChangeAppointmentStatusCommand</b> command.
<para>
<b>Default Value:</b> "&Tentative"
</para>
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.Localization.SchedulerStringId.MenuCmd_TimeScaleCaptionsMenu">
<summary>
<para>The group menu caption of commands used to enable time scale captions in the Timeline view.
<para>
<b>Default Value:</b> "Time Scale &Captions"
</para>
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.Localization.SchedulerStringId.MenuCmd_TimeScaleDay">
<summary>
<para>The menu caption used for the <b>DevExpress.XtraScheduler.Commands.TimeScaleEnableCommand</b> and <b>DevExpress.XtraScheduler.Commands.TimeScaleVisibleCommand</b> commands.
<para>
<b>Default Value:</b> "&Day"
</para>
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.Localization.SchedulerStringId.MenuCmd_TimeScaleHour">
<summary>
<para>The menu caption used for the <b>DevExpress.XtraScheduler.Commands.TimeScaleEnableCommand</b> and <b>DevExpress.XtraScheduler.Commands.TimeScaleVisibleCommand</b> commands.
<para>
<b>Default Value:</b> "&Hour"
</para>
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.Localization.SchedulerStringId.MenuCmd_TimeScaleMonth">
<summary>
<para>The menu caption used for the <b>DevExpress.XtraScheduler.Commands.TimeScaleEnableCommand</b> and <b>DevExpress.XtraScheduler.Commands.TimeScaleVisibleCommand</b> commands.
<para>
<b>Default Value:</b> "&Month"
</para>
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.Localization.SchedulerStringId.MenuCmd_TimeScaleQuarter">
<summary>
<para>The menu caption used for the <b>DevExpress.XtraScheduler.Commands.TimeScaleEnableCommand</b> and <b>DevExpress.XtraScheduler.Commands.TimeScaleVisibleCommand</b> commands.
<para>
<b>Default Value:</b> "&Quarter"
</para>
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.Localization.SchedulerStringId.MenuCmd_TimeScalesMenu">
<summary>
<para>The group menu caption of commands used to enable time scales in the Timeline view.
<para>
<b>Default Value:</b> "&Time Scales"
</para>
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.Localization.SchedulerStringId.MenuCmd_TimeScaleWeek">
<summary>
<para>The menu caption used for the <b>DevExpress.XtraScheduler.Commands.TimeScaleEnableCommand</b> and <b>DevExpress.XtraScheduler.Commands.TimeScaleVisibleCommand</b> commands.
<para>
<b>Default Value:</b> "&Week"
</para>
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.Localization.SchedulerStringId.MenuCmd_TimeScaleYear">
<summary>
<para>The menu caption used for the <b>DevExpress.XtraScheduler.Commands.TimeScaleEnableCommand</b> and <b>DevExpress.XtraScheduler.Commands.TimeScaleVisibleCommand</b> commands.
<para>
<b>Default Value:</b> "&Year"
</para>
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.Localization.SchedulerStringId.MenuCmd_ToggleRecurrence">
<summary>
<para>The menu caption of the <b>DevExpress.XtraScheduler.Commands.ToggleRecurrenceCommand</b> command.
<para>
<b>Default Value:</b> "Recurrence"
</para>
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.Localization.SchedulerStringId.MenuCmd_ViewZoomIn">
<summary>
<para>The menu caption of the <b>DevExpress.XtraScheduler.Commands.ViewZoomInCommand</b> command.
<para>
<b>Default Value:</b> "Zoom In"
</para>
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.Localization.SchedulerStringId.MenuCmd_ViewZoomOut">
<summary>
<para>The menu caption of the <b>DevExpress.XtraScheduler.Commands.ViewZoomOutCommand</b> command.
<para>
<b>Default Value:</b> "Zoom Out"
</para>
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.Localization.SchedulerStringId.MenuCmd_WorkingElsewhere">
<summary>
<para>The menu caption of the <b>DevExpress.XtraScheduler.Commands.ChangeAppointmentStatusCommand</b> command.
<para>
<b>Default Value:</b> "&Working Elsewhere"
</para>
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.Localization.SchedulerStringId.Msg_ApplyToAllStyles">
<summary>
<para>The text of the confirmation message box invoked when <b>Apply settings to all styles</b> is checked in the <b>Page Setup</b> dialog.
<para>
<b>Default Value:</b> "Apply current printer settings to all styles?"
</para>
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.Localization.SchedulerStringId.Msg_CantFitIntoPage">
<summary>
<para><para>
<b>Default Value:</b> "It's impossible to fit the printing output into a single page using the current printing settings. Please try to increase the page height or decrease the PrintTime interval."
</para>
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.Localization.SchedulerStringId.Msg_Conflict">
<summary>
<para>The text of the message box that appears on an attempt to close the appointment editing form and save an appointment that conflicts with other appointments.
<para>
<b>Default Value:</b> "An edited appointment conflicts with one or several other appointments."
</para>
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.Localization.SchedulerStringId.Msg_DuplicateCustomFieldMappings">
<summary>
<para><para>
<b>Default Value:</b> "Duplicate custom field name. Revise the mappings: \r\n{0}"
</para>
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.Localization.SchedulerStringId.Msg_DuplicateMappingMember">
<summary>
<para>The text used in the error message generated by the SchedulerStorage when the <see cref="T:DevExpress.XtraScheduler.MappingCollection"/> contains incorrect mappings.
<para>
<b>Default Value:</b> "The '{0}' member mapping is not unique: "
</para>
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.Localization.SchedulerStringId.Msg_iCalendar_AppointmentsImportWarning">
<summary>
<para>The text of an exception which is thrown when certain iCalendar items cannot be imported.
<para>
<b>Default Value:</b> "Cannot import some appointment"
</para>
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.Localization.SchedulerStringId.Msg_iCalendar_NotValidFile">
<summary>
<para>The text of an exception which is thrown when an invalid .ics file is specified for an import operation.
<para>
<b>Default Value:</b> "Invalid Internet Calendar file"
</para>
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.Localization.SchedulerStringId.Msg_InconsistentRecurrenceInfoMapping">
<summary>
<para>The text of an error that may occur during a consistency check for appointments loaded in the AppointmentStorage.
<para>
<b>Default Value:</b> "To support recurrence you must map both RecurrenceInfo and Type members."
</para>
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.Localization.SchedulerStringId.Msg_IncorrectMappingsQuestion">
<summary>
<para>Confirmation message returned when trying to save incorrect mappings in the Mappings Wizard.
<para>
<b>Default Value:</b> "Incorrect mappings. Continue anyway?\r\nDetails:\r\n"
</para>
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.Localization.SchedulerStringId.Msg_InternalError">
<summary>
<para><para>
<b>Default Value:</b> "Internal error!"
</para>
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.Localization.SchedulerStringId.Msg_InvalidAppointmentDuration">
<summary>
<para>The text of an error that may occur in the Appointment Recurrence form.
<para>
<b>Default Value:</b> "Invalid value specified for the interval duration. Please enter a positive value."
</para>
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.Localization.SchedulerStringId.Msg_InvalidDayCount">
<summary>
<para>The text of an error that may occur during recurrence validation.
<para>
<b>Default Value:</b> "Invalid day count. Please enter a positive integer value."
</para>
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.Localization.SchedulerStringId.Msg_InvalidDayCountValue">
<summary>
<para>The text of an error that may occur during recurrence validation.
<para>
<b>Default Value:</b> "Invalid day count. Please enter a positive integer value."
</para>
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.Localization.SchedulerStringId.Msg_InvalidDayNumber">
<summary>
<para>The text of an error that may occur during recurrence validation.
<para>
<b>Default Value:</b> "Invalid day number. Please enter an integer value from 1 to {0}."
</para>
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.Localization.SchedulerStringId.Msg_InvalidDayNumberValue">
<summary>
<para>The text of an error that may occur during recurrence validation.
<para>
<b>Default Value:</b> "Invalid day number. Please enter an integer value from 1 to {0}."
</para>
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.Localization.SchedulerStringId.Msg_InvalidDayOfWeek">
<summary>
<para>The text of an error that may occur during recurrence validation.
<para>
<b>Default Value:</b> "No day selected. Please select at least one day in the week."
</para>
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.Localization.SchedulerStringId.Msg_InvalidDayOfWeekForDailyRecurrence">
<summary>
<para>The text of an exception that is thrown on an incorrect value assignment to the <see cref="P:DevExpress.XtraScheduler.RecurrenceInfo.WeekDays"/> property.
<para>
<b>Default Value:</b> "Invalid day of week for a daily recurrence. Only WeekDays.EveryDay, WeekDays.WeekendDays and WeekDays.WorkDays are valid in this context."
</para>
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.Localization.SchedulerStringId.Msg_InvalidEndDate">
<summary>
<para>The text of an error that may occur in the Appointment Editing form.
<para>
<b>Default Value:</b> "The date you entered occurs before the start date."
</para>
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.Localization.SchedulerStringId.Msg_InvalidInputFile">
<summary>
<para><para>
<b>Default Value:</b> "Input file is invalid."
</para>
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.Localization.SchedulerStringId.Msg_InvalidMonthCount">
<summary>
<para>The text of an error that may occur during recurrence validation.
<para>
<b>Default Value:</b> "Invalid month count. Please enter a positive integer value."
</para>
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.Localization.SchedulerStringId.Msg_InvalidMonthCountValue">
<summary>
<para>The text of an error that may occur during recurrence validation.
<para>
<b>Default Value:</b> "Invalid month count. Please enter a positive integer value."
</para>
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.Localization.SchedulerStringId.Msg_InvalidOccurrencesCount">
<summary>
<para>The text of an error that may occur during recurrence validation.
<para>
<b>Default Value:</b> "Invalid occurrences count. Please enter a positive integer value."
</para>
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.Localization.SchedulerStringId.Msg_InvalidOccurrencesCountValue">
<summary>
<para>The text of an error that may occur during recurrence validation.
<para>
<b>Default Value:</b> "Invalid occurrences count. Please enter a positive integer value."
</para>
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.Localization.SchedulerStringId.Msg_InvalidReminderTimeBeforeStart">
<summary>
<para>The text of an error that may occur in the Appointment Recurrence form.
<para>
<b>Default Value:</b> "Invalid value specified for the before event reminder's time. Please enter a positive value."
</para>
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.Localization.SchedulerStringId.Msg_InvalidSize">
<summary>
<para>The text of an error that may occur in the Page Setup form when specifying the paper size.
<para>
<b>Default Value:</b> "Invalid value specified for the size."
</para>
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.Localization.SchedulerStringId.Msg_InvalidTimeOfDayInterval">
<summary>
<para><para>
<b>Default Value:</b> "Invalid duration for the TimeOfDayInterval"
</para>
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.Localization.SchedulerStringId.Msg_InvalidWeekCount">
<summary>
<para>The text of an error that may occur during recurrence validation.
<para>
<b>Default Value:</b> "Invalid week count. Please enter a positive integer value."
</para>
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.Localization.SchedulerStringId.Msg_InvalidWeekCountValue">
<summary>
<para>The text of an error that may occur during recurrence validation.
<para>
<b>Default Value:</b> "Invalid week count. Please enter a positive integer value."
</para>
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.Localization.SchedulerStringId.Msg_InvalidYearCount">
<summary>
<para><para>
<b>Default Value:</b> "Invalid year count. Please enter a positive integer value."
</para>
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.Localization.SchedulerStringId.Msg_InvalidYearCountValue">
<summary>
<para><para>
<b>Default Value:</b> "Invalid year count. Please enter a positive integer value."
</para>
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.Localization.SchedulerStringId.Msg_IsNotValid">
<summary>
<para>The text used in exception messages.
<para>
<b>Default Value:</b> "'{0}' is not a valid value for '{1}'"
</para>
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.Localization.SchedulerStringId.Msg_LoadCollectionFromXml">
<summary>
<para>The text of an exception that is thrown by the SchedulerStorage in bound mode when it attempts to load appointments from xml.
<para>
<b>Default Value:</b> "The scheduler needs to be in unbound mode to load collection items from xml."
</para>
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.Localization.SchedulerStringId.Msg_MappingsCheckPassedOk">
<summary>
<para>The text of an information message displayed by the Mappings Wizard.
<para>
<b>Default Value:</b> "Mappings are correct!"
</para>
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.Localization.SchedulerStringId.Msg_MemoPrintNoSelectedItems">
<summary>
<para>The text of an error message displayed when the Scheduler is printed using the Memo style and no appointments are selected.
<para>
<b>Default Value:</b> "Cannot print unless an item is selected. Select an item, and then try to print again."
</para>
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.Localization.SchedulerStringId.Msg_MissingMappingMember">
<summary>
<para>The text used in the error message generated by the SchedulerStorage when the <see cref="T:DevExpress.XtraScheduler.MappingCollection"/> has missing mappings.
<para>
<b>Default Value:</b> "Missing '{1}' member of the '{0}' property mapping."
</para>
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.Localization.SchedulerStringId.Msg_MissingRequiredMapping">
<summary>
<para>The text used in the error message generated by the SchedulerStorage when the <see cref="T:DevExpress.XtraScheduler.MappingCollection"/> is missing required mappings.
<para>
<b>Default Value:</b> "The required mapping for the '{0}' property is missing."
</para>
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.Localization.SchedulerStringId.Msg_NoMappingForObject">
<summary>
<para><para>
<b>Default Value:</b> "The following required mappings for the object \r\n {0} are not assigned"
</para>
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.Localization.SchedulerStringId.Msg_OutlookCalendarNotFound">
<summary>
<para>The text of an error message displayed in an import/export operation with MS Outlook if an Outlook calendar is not found.
<para>
<b>Default Value:</b> "The '{0}' calendar is not found."
</para>
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.Localization.SchedulerStringId.Msg_OverflowTimeOfDayInterval">
<summary>
<para><para>
<b>Default Value:</b> "Invalid value for the TimeOfDayInterval. Should be less than or equal to a day"
</para>
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.Localization.SchedulerStringId.Msg_PrintStyleNameExists">
<summary>
<para>The text of the warning message displayed when a duplicate style name is specified when adding a new style in the <b>Page Setup</b> dialog.
<para>
<b>Default Value:</b> "The style name '{0}' already exists. Type another name."
</para>
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.Localization.SchedulerStringId.Msg_RecurrenceExceptionsWillBeLost">
<summary>
<para>The text of the confirmation message box invoked when <b>Apply settings to all styles</b> is checked in the <b>Page Setup</b> dialog.
<para>
<b>Default Value:</b> "Any exceptions associated with this recurring appointment will be lost. Proceed?"
</para>
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.Localization.SchedulerStringId.Msg_Warning">
<summary>
<para><para>
<b>Default Value:</b> "Warning!"
</para>
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.Localization.SchedulerStringId.Msg_WarningAppointmentDeleted">
<summary>
<para><para>
<b>Default Value:</b> "The appointment has been deleted by another user."
</para>
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.Localization.SchedulerStringId.Msg_WarningDayNumber">
<summary>
<para>The text of an error that may occur during recurrence validation.
<para>
<b>Default Value:</b> "Some months have fewer than {0} days. For these months, the occurrences will fall on the last day of the month."
</para>
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.Localization.SchedulerStringId.Msg_XtraSchedulerNotAssigned">
<summary>
<para><para>
<b>Default Value:</b> "The SchedulerStorage component is not assigned to the SchedulerControl"
</para>
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.Localization.SchedulerStringId.PrintCalendarDetailsControlDayPeriod">
<summary>
<para>The text of an item in the <b>Start a new page each</b> combobox located in the <b>Page Setup</b> dialog on the <b>Format</b> tab. This combobox is visible when the <b>Calendar Details Style</b> is selected in the <b>Style name</b> combo box editor.
<para>
<b>Default Value:</b> "Day"
</para>
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.Localization.SchedulerStringId.PrintCalendarDetailsControlMonthPeriod">
<summary>
<para>The text of an item in the <b>Start a new page each</b> combobox located in the <b>Page Setup</b> dialog on the <b>Format</b> tab. This combobox is visible when the <b>Calendar Details Style</b> is selected in the <b>Style name</b> combo box editor.
<para>
<b>Default Value:</b> "Month"
</para>
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.Localization.SchedulerStringId.PrintCalendarDetailsControlWeekPeriod">
<summary>
<para>The text of an item in the <b>Start a new page each</b> combobox located in the <b>Page Setup</b> dialog on the <b>Format</b> tab. This combobox is visible when the <b>Calendar Details Style</b> is selected in the <b>Style name</b> combo box editor.
<para>
<b>Default Value:</b> "Week"
</para>
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.Localization.SchedulerStringId.PrintMonthlyOptControlOnePagePerMonth">
<summary>
<para>The text of an item in the <b>Layout</b> combobox located in the <b>Page Setup</b> dialog on the <b>Format</b> tab. This combobox is visible when the <b>Monthly Style</b> is selected in the <b>Style name</b> combo box editor.
<para>
<b>Default Value:</b> "1 page/month"
</para>
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.Localization.SchedulerStringId.PrintMonthlyOptControlTwoPagesPerMonth">
<summary>
<para>The text of an item in the <b>Layout</b> combobox located in the <b>Page Setup</b> dialog on the <b>Format</b> tab. This combobox is visible when the <b>Monthly Style</b> is selected in the <b>Style name</b> combo box editor.
<para>
<b>Default Value:</b> "2 page/month"
</para>
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.Localization.SchedulerStringId.PrintMoreItemsMsg">
<summary>
<para>The text printed in the time cell if not all contained appointments are printed. This may happen if a time cell contains more appointments than it can fit in the print area.
<para>
<b>Default Value:</b> "More items..."
</para>
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.Localization.SchedulerStringId.PrintNoPrintersInstalled">
<summary>
<para><para>
<b>Default Value:</b> "No printers installed"
</para>
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.Localization.SchedulerStringId.PrintPageSetupFormatTabControlCustomizeShading">
<summary>
<para>The text of the <b>Shading</b> combo box item. The combo box editor is located on the Format tab of the Page Setup dialog.
<para>
<b>Default Value:</b> ""
</para>
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.Localization.SchedulerStringId.PrintPageSetupFormatTabControlSizeAndFontName">
<summary>
<para>The format string used to display items in the <b>Fonts</b> combo boxes on the <b>Format</b> tab of the Page Setup dialog.
<para><b>Default Value:</b>"{0} pt. {1}"
</para>
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.Localization.SchedulerStringId.PrintPageSetupFormCaption">
<summary>
<para>The text of a warning message displayed on an attempt to print from the <b>Page Setup</b> form if there are no printers installed in the system.
<para>
<b>Default Value:</b> "No printers installed"
</para>
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.Localization.SchedulerStringId.PrintRangeControlInvalidDate">
<summary>
<para>The text of the warning message displayed when an incorrect <b>Start date</b> and <b>End date</b> are set on the Format tab of the Page Setup dialog.
<para>
<b>Default Value:</b>"End date must be greater or equal to the start date"
</para>
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.Localization.SchedulerStringId.PrintTimeIntervalControlInvalidDuration">
<summary>
<para>The text of the tooltip displayed when the <b>TimeOfDayIntervalEditControl</b> combo box fails validation because an incorrect value is entered. The control, labeled <b>Duration</b>, is located on the Format tab of the Page Setup dialog.
<para><b>Default Value:</b>"Duration must be not greater than a day and greater than 0"
</para>
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.Localization.SchedulerStringId.PrintTimeIntervalControlInvalidStartEndTime">
<summary>
<para><para>
<b>Default Value:</b>"End time must be greater than the start time""
</para>
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.Localization.SchedulerStringId.PrintTriFoldOptControlDailyCalendar">
<summary>
<para>The text of an item in a combo box that specifies a calendar style for the section of the trifold-style calendar. The option is available if the <b>Tri-fold Style</b> is selected on the Format tab of the Page Setup dialog.
<para><b>Default Value:</b>"Daily Calendar"
</para>
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.Localization.SchedulerStringId.PrintTriFoldOptControlMonthlyCalendar">
<summary>
<para>The text of an item in a combo box that specifies a calendar style for the section of the trifold-style calendar. The option is available if the <b>Tri-fold Style</b> is selected on the Format tab of the Page Setup dialog.
<para><b>Default Value:</b>"Monthly Calendar"
</para>
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.Localization.SchedulerStringId.PrintTriFoldOptControlWeeklyCalendar">
<summary>
<para>The text of an item in a combo box that specifies a calendar style for the section of the trifold-style calendar. The option is available if the <b>Tri-fold Style</b> is selected on the Format tab of the Page Setup dialog.
<para><b>Default Value:</b>"Weekly Calendar"
</para>
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.Localization.SchedulerStringId.PrintWeeklyOptControlOneWeekPerPage">
<summary>
<para>The text of an item in the <b>Layout</b> combobox located in the <b>Page Setup</b> dialog on the <b>Format</b> tab. This combobox is visible when the <b>Weekly Style</b> is selected in the <b>Style name</b> combo box editor.
<para>
<b>Default Value:</b> "1 page/week"
</para>
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.Localization.SchedulerStringId.PrintWeeklyOptControlTwoWeekPerPage">
<summary>
<para>The text of an item in the <b>Layout</b> combobox located in the <b>Page Setup</b> dialog on the <b>Format</b> tab. This combobox is visible when the <b>Weekly Style</b> is selected in the <b>Style name</b> combo box editor.
<para>
<b>Default Value:</b> "2 page/week"
</para>
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.Localization.SchedulerStringId.Reporting_NotAssigned_TimeCells">
<summary>
<para>The text displayed in the Visual Studio Designer for the <see cref="T:DevExpress.XtraScheduler.Reporting.TimeIntervalInfo"/>, <see cref="T:DevExpress.XtraScheduler.Reporting.ResourceInfo"/> and <see cref="T:DevExpress.XtraScheduler.Reporting.FormatTimeIntervalInfo"/> controls if the <b>TimeCells</b> property is not set.
<para>
<b>Default Value:</b> "Required TimeCells control is not assigned"
</para>
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.Localization.SchedulerStringId.Reporting_NotAssigned_View">
<summary>
<para>The text displayed in the Designer for view-based Scheduler Reporting Controls if the <b>View</b> property is not set.
<para>
<b>Default Value:</b> "Required View component is not assigned"
</para>
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.Localization.SchedulerStringId.TextAppointmentSnapToCells_Always">
<summary>
<para>The menu caption of the <b>DevExpress.XtraScheduler.Commands.SetSnapToCellCommand</b> used to specify the <see cref="P:DevExpress.XtraScheduler.AppointmentDisplayOptions.SnapToCellsMode"/> option in the Scheduler Command UI.
<para>
<b>Default Value:</b> "Always"
</para>
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.Localization.SchedulerStringId.TextAppointmentSnapToCells_Auto">
<summary>
<para>The menu caption of the <b>DevExpress.XtraScheduler.Commands.SetSnapToCellCommand</b> used to specify the <see cref="P:DevExpress.XtraScheduler.AppointmentDisplayOptions.SnapToCellsMode"/> option in the Scheduler Command UI.
<para>
<b>Default Value:</b> "Auto"
</para>
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.Localization.SchedulerStringId.TextAppointmentSnapToCells_Disabled">
<summary>
<para>The menu caption of the <b>DevExpress.XtraScheduler.Commands.SetSnapToCellCommand</b> used to specify the <see cref="P:DevExpress.XtraScheduler.AppointmentDisplayOptions.SnapToCellsMode"/> option in the Scheduler Command UI.
<para>
<b>Default Value:</b> "Disabled"
</para>
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.Localization.SchedulerStringId.TextAppointmentSnapToCells_Never">
<summary>
<para>The menu caption of the <b>DevExpress.XtraScheduler.Commands.SetSnapToCellCommand</b> used to specify the <see cref="P:DevExpress.XtraScheduler.AppointmentDisplayOptions.SnapToCellsMode"/> option in the Scheduler Command UI.
<para>
<b>Default Value:</b> "Never"
</para>
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.Localization.SchedulerStringId.TextDailyPatternString_EveryDay">
<summary>
<para>A format string used by the <see cref="M:DevExpress.XtraScheduler.RecurrenceInfo.GetDescription"/> method.
<para>
<b>Default Value:</b> "every {1} {0}"
</para>
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.Localization.SchedulerStringId.TextDailyPatternString_EveryDays">
<summary>
<para>A format string used by the <see cref="M:DevExpress.XtraScheduler.RecurrenceInfo.GetDescription"/> method.
<para>
<b>Default Value:</b> "every {2} {1} {0}"
</para>
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.Localization.SchedulerStringId.TextDailyPatternString_EveryWeekDay">
<summary>
<para>A format string used by the <see cref="M:DevExpress.XtraScheduler.RecurrenceInfo.GetDescription"/> method.
<para>
<b>Default Value:</b> "every weekday {0}"
</para>
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.Localization.SchedulerStringId.TextDailyPatternString_EveryWeekend">
<summary>
<para>A format string used by the <see cref="M:DevExpress.XtraScheduler.RecurrenceInfo.GetDescription"/> method.
<para>
<b>Default Value:</b> "every weekend {0}"
</para>
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.Localization.SchedulerStringId.TextDuration_ForPattern">
<summary>
<para>A format string used by the <see cref="M:DevExpress.XtraScheduler.RecurrenceInfo.GetDescription"/> method.
<para>
<b>Default Value:</b> "{0} {1}"
</para>
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.Localization.SchedulerStringId.TextDuration_FromForDays">
<summary>
<para>A format string used by the <see cref="M:DevExpress.XtraScheduler.RecurrenceInfo.GetDescription"/> method.
<para>
<b>Default Value:</b> "from {0} for {1} "
</para>
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.Localization.SchedulerStringId.TextDuration_FromForDaysHours">
<summary>
<para>A format string used by the <see cref="M:DevExpress.XtraScheduler.RecurrenceInfo.GetDescription"/> method.
<para>
<b>Default Value:</b> "from {0} for {1} {2}"
</para>
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.Localization.SchedulerStringId.TextDuration_FromForDaysHoursMinutes">
<summary>
<para>A format string used by the <see cref="M:DevExpress.XtraScheduler.RecurrenceInfo.GetDescription"/> method.
<para>
<b>Default Value:</b> "from {0} for {1} {2} {3}"
</para>
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.Localization.SchedulerStringId.TextDuration_FromForDaysMinutes">
<summary>
<para>A format string used by the <see cref="M:DevExpress.XtraScheduler.RecurrenceInfo.GetDescription"/> method.
<para>
<b>Default Value:</b> "from {0} for {1} {3}"
</para>
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.Localization.SchedulerStringId.TextDuration_FromTo">
<summary>
<para>A format string used by the <see cref="M:DevExpress.XtraScheduler.RecurrenceInfo.GetDescription"/> method.
<para>
<b>Default Value:</b> "from {0} to {1}"
</para>
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.Localization.SchedulerStringId.TextMonthlyPatternString_SubPattern">
<summary>
<para>A format string used by the <see cref="M:DevExpress.XtraScheduler.RecurrenceInfo.GetDescription"/> method.
<para>
<b>Default Value:</b> "of every {0} {1} {2}"
</para>
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.Localization.SchedulerStringId.TextMonthlyPatternString1">
<summary>
<para>A format string used by the <see cref="M:DevExpress.XtraScheduler.RecurrenceInfo.GetDescription"/> method.
<para>
<b>Default Value:</b> "day {3} {0}"
</para>
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.Localization.SchedulerStringId.TextMonthlyPatternString2">
<summary>
<para>A format string used by the <see cref="M:DevExpress.XtraScheduler.RecurrenceInfo.GetDescription"/> method.
<para>
<b>Default Value:</b> "the {1} {2} {0}"
</para>
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.Localization.SchedulerStringId.TextRecurrenceTypeDaily">
<summary>
<para>The text used to print the <see cref="F:DevExpress.XtraScheduler.RecurrenceType.Daily"/> value in the Memo print style.
<para>
<b>Default Value:</b> "Daily"
</para>
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.Localization.SchedulerStringId.TextRecurrenceTypeHourly">
<summary>
<para>The text used to print the <see cref="F:DevExpress.XtraScheduler.RecurrenceType.Hourly"/> value in the Memo print style.
<para>
<b>Default Value:</b> "Hourly"
</para>
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.Localization.SchedulerStringId.TextRecurrenceTypeMinutely">
<summary>
<para>The text used to print the <see cref="F:DevExpress.XtraScheduler.RecurrenceType.Minutely"/> value in the Memo print style.
<para>
<b>Default Value:</b> "Minutely"
</para>
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.Localization.SchedulerStringId.TextRecurrenceTypeMonthly">
<summary>
<para>The text used to print the <see cref="F:DevExpress.XtraScheduler.RecurrenceType.Monthly"/> value in the Memo print style.
<para>
<b>Default Value:</b> "Monthly"
</para>
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.Localization.SchedulerStringId.TextRecurrenceTypeWeekly">
<summary>
<para>The text used to print the <see cref="F:DevExpress.XtraScheduler.RecurrenceType.Weekly"/> value in the Memo print style.
<para>
<b>Default Value:</b> "Weekly"
</para>
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.Localization.SchedulerStringId.TextRecurrenceTypeYearly">
<summary>
<para>The text used to print the <see cref="F:DevExpress.XtraScheduler.RecurrenceType.Yearly"/> value in the Memo print style.
<para>
<b>Default Value:</b> "Yearly"
</para>
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.Localization.SchedulerStringId.TextWeekly_0Day">
<summary>
<para>A format string used by the <see cref="M:DevExpress.XtraScheduler.RecurrenceInfo.GetDescription"/> method.
<para>
<b>Default Value:</b> "unspecified day of week"
</para>
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.Localization.SchedulerStringId.TextWeekly_1Day">
<summary>
<para>A format string used by the <see cref="M:DevExpress.XtraScheduler.RecurrenceInfo.GetDescription"/> method.
<para>
<b>Default Value:</b> "{0}"
</para>
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.Localization.SchedulerStringId.TextWeekly_2Day">
<summary>
<para>A format string used by the <see cref="M:DevExpress.XtraScheduler.RecurrenceInfo.GetDescription"/> method.
<para>
<b>Default Value:</b> "{0} and {1}"
</para>
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.Localization.SchedulerStringId.TextWeekly_3Day">
<summary>
<para>A format string used by the <see cref="M:DevExpress.XtraScheduler.RecurrenceInfo.GetDescription"/> method.
<para>
<b>Default Value:</b> "{0}, {1}, and {2}"
</para>
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.Localization.SchedulerStringId.TextWeekly_4Day">
<summary>
<para>A format string used by the <see cref="M:DevExpress.XtraScheduler.RecurrenceInfo.GetDescription"/> method.
<para>
<b>Default Value:</b> "{0}, {1}, {2}, and {3}"
</para>
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.Localization.SchedulerStringId.TextWeekly_5Day">
<summary>
<para>A format string used by the <see cref="M:DevExpress.XtraScheduler.RecurrenceInfo.GetDescription"/> method.
<para>
<b>Default Value:</b> "{0}, {1}, {2}, {3}, and {4}"
</para>
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.Localization.SchedulerStringId.TextWeekly_6Day">
<summary>
<para>A format string used by the <see cref="M:DevExpress.XtraScheduler.RecurrenceInfo.GetDescription"/> method.
<para>
<b>Default Value:</b> "{0}, {1}, {2}, {3}, {4}, and {5}"
</para>
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.Localization.SchedulerStringId.TextWeekly_7Day">
<summary>
<para>A format string used by the <see cref="M:DevExpress.XtraScheduler.RecurrenceInfo.GetDescription"/> method.
<para>
<b>Default Value:</b> "{0}, {1}, {2}, {3}, {4}, {5}, and {6}"
</para>
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.Localization.SchedulerStringId.TextWeeklyPatternString_EveryWeek">
<summary>
<para>A format string used by the <see cref="M:DevExpress.XtraScheduler.RecurrenceInfo.GetDescription"/> method.
<para>
<b>Default Value:</b> "every {3} {0}"
</para>
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.Localization.SchedulerStringId.TextWeeklyPatternString_EveryWeeks">
<summary>
<para>A format string used by the <see cref="M:DevExpress.XtraScheduler.RecurrenceInfo.GetDescription"/> method.
<para>
<b>Default Value:</b> "every {1} {2} on {3} {0}"
</para>
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.Localization.SchedulerStringId.TextYearlyPattern_YearsString1">
<summary>
<para>A format string used by the <see cref="M:DevExpress.XtraScheduler.RecurrenceInfo.GetDescription"/> method.
<para>
<b>Default Value:</b> "{3} {4} of every {1} {2} {0}"
</para>
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.Localization.SchedulerStringId.TextYearlyPattern_YearsString2">
<summary>
<para>A format string used by the <see cref="M:DevExpress.XtraScheduler.RecurrenceInfo.GetDescription"/> method.
<para>
<b>Default Value:</b> "the {5} {6} of {3} every {1} {2} {0}"
</para>
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.Localization.SchedulerStringId.TextYearlyPattern_YearString1">
<summary>
<para>A format string used by the <see cref="M:DevExpress.XtraScheduler.RecurrenceInfo.GetDescription"/> method.
<para>
<b>Default Value:</b> "every {3} {4} {0}"
</para>
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.Localization.SchedulerStringId.TextYearlyPattern_YearString2">
<summary>
<para>A format string used by the <see cref="M:DevExpress.XtraScheduler.RecurrenceInfo.GetDescription"/> method.
<para>
<b>Default Value:</b> "the {5} {6} of {3} {0}"
</para>
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.Localization.SchedulerStringId.TimeScaleDisplayName_Day">
<summary>
<para>A value of the <see cref="P:DevExpress.XtraScheduler.UserInterfaceObject.DisplayName"/> property for the <see cref="T:DevExpress.XtraScheduler.TimeScaleDay"/> class.
<para>
<b>Default Value:</b> "Day"
</para>
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.Localization.SchedulerStringId.TimeScaleDisplayName_Hour">
<summary>
<para>A value of the <see cref="P:DevExpress.XtraScheduler.UserInterfaceObject.DisplayName"/> property for the <see cref="T:DevExpress.XtraScheduler.TimeScaleHour"/> class.
<para>
<b>Default Value:</b> "Hour"
</para>
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.Localization.SchedulerStringId.TimeScaleDisplayName_Month">
<summary>
<para>A value of the <see cref="P:DevExpress.XtraScheduler.UserInterfaceObject.DisplayName"/> property for the <see cref="T:DevExpress.XtraScheduler.TimeScaleMonth"/> class.
<para>
<b>Default Value:</b> "Month"
</para>
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.Localization.SchedulerStringId.TimeScaleDisplayName_Quarter">
<summary>
<para>A value of the <see cref="P:DevExpress.XtraScheduler.UserInterfaceObject.DisplayName"/> property for the <see cref="T:DevExpress.XtraScheduler.TimeScaleQuarter"/> class.
<para>
<b>Default Value:</b> "Quarter"
</para>
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.Localization.SchedulerStringId.TimeScaleDisplayName_Week">
<summary>
<para>A value of the <see cref="P:DevExpress.XtraScheduler.UserInterfaceObject.DisplayName"/> property for the <see cref="T:DevExpress.XtraScheduler.TimeScaleWeek"/> class.
<para>
<b>Default Value:</b> "Week"
</para>
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.Localization.SchedulerStringId.TimeScaleDisplayName_Year">
<summary>
<para>A value of the <see cref="P:DevExpress.XtraScheduler.UserInterfaceObject.DisplayName"/> property for the <see cref="T:DevExpress.XtraScheduler.TimeScaleYear"/> class.
<para>
<b>Default Value:</b> "Year"
</para>
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.Localization.SchedulerStringId.UD_SchedulerReportsToolboxCategoryName">
<summary>
<para>The name of the End-User Report Designer toolbox category containing Scheduler Reporting controls.
<para>
<b>Default Value:</b> "Scheduler Controls"
</para>
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.Localization.SchedulerStringId.ViewDisplayName_Day">
<summary>
<para>A value of the <see cref="P:DevExpress.XtraScheduler.SchedulerViewBase.DisplayName"/> property for the <see cref="T:DevExpress.XtraScheduler.DayView"/> class.
<para>
<b>Default Value:</b> "Day Calendar"
</para>
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.Localization.SchedulerStringId.ViewDisplayName_Gantt">
<summary>
<para>A value of the <see cref="P:DevExpress.XtraScheduler.SchedulerViewBase.DisplayName"/> property for the <see cref="T:DevExpress.XtraScheduler.GanttView"/> class.
<para>
<b>Default Value:</b> "Gantt View"
</para>
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.Localization.SchedulerStringId.ViewDisplayName_Month">
<summary>
<para>A value of the <see cref="P:DevExpress.XtraScheduler.SchedulerViewBase.DisplayName"/> property for the <see cref="T:DevExpress.XtraScheduler.MonthView"/> class.
<para>
<b>Default Value:</b> "Month Calendar"
</para>
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.Localization.SchedulerStringId.ViewDisplayName_Timeline">
<summary>
<para>A value of the <see cref="P:DevExpress.XtraScheduler.SchedulerViewBase.DisplayName"/> property for the <see cref="T:DevExpress.XtraScheduler.TimelineView"/> class.
<para>
<b>Default Value:</b> "Timeline Calendar"
</para>
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.Localization.SchedulerStringId.ViewDisplayName_Week">
<summary>
<para>A value of the <see cref="P:DevExpress.XtraScheduler.SchedulerViewBase.DisplayName"/> property for the <see cref="T:DevExpress.XtraScheduler.WeekView"/> class.
<para>
<b>Default Value:</b> "Week Calendar"
</para>
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.Localization.SchedulerStringId.ViewDisplayName_WorkDays">
<summary>
<para>A value of the <see cref="P:DevExpress.XtraScheduler.SchedulerViewBase.DisplayName"/> property for the <see cref="T:DevExpress.XtraScheduler.DayView"/> class.
<para>
<b>Default Value:</b> "Work Week Calendar"
</para>
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.Localization.SchedulerStringId.ViewShortDisplayName_Day">
<summary>
<para>A value of the <see cref="P:DevExpress.XtraScheduler.SchedulerViewBase.ShortDisplayName"/> property for the <see cref="T:DevExpress.XtraScheduler.DayView"/> class.
<para>
<b>Default Value:</b> "Day"
</para>
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.Localization.SchedulerStringId.ViewShortDisplayName_Gantt">
<summary>
<para>A value of the <see cref="P:DevExpress.XtraScheduler.SchedulerViewBase.ShortDisplayName"/> property for the <see cref="T:DevExpress.XtraScheduler.GanttView"/> class.
<para>
<b>Default Value:</b> "Gantt"
</para>
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.Localization.SchedulerStringId.ViewShortDisplayName_Month">
<summary>
<para>A value of the <see cref="P:DevExpress.XtraScheduler.SchedulerViewBase.ShortDisplayName"/> property for the <see cref="T:DevExpress.XtraScheduler.MonthView"/> class.
<para>
<b>Default Value:</b> "Month"
</para>
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.Localization.SchedulerStringId.ViewShortDisplayName_Timeline">
<summary>
<para>A value of the <see cref="P:DevExpress.XtraScheduler.SchedulerViewBase.ShortDisplayName"/> property for the <see cref="T:DevExpress.XtraScheduler.TimelineView"/> class.
<para>
<b>Default Value:</b> "Timeline"
</para>
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.Localization.SchedulerStringId.ViewShortDisplayName_Week">
<summary>
<para>A value of the <see cref="P:DevExpress.XtraScheduler.SchedulerViewBase.ShortDisplayName"/> property for the <see cref="T:DevExpress.XtraScheduler.WeekView"/> class.
<para>
<b>Default Value:</b> "Week"
</para>
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.Localization.SchedulerStringId.ViewShortDisplayName_WorkDays">
<summary>
<para>A value of the <see cref="P:DevExpress.XtraScheduler.SchedulerViewBase.ShortDisplayName"/> property for the <see cref="T:DevExpress.XtraScheduler.WorkWeekView"/> class.
<para>
<b>Default Value:</b> "Work Week"
</para>
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.Localization.SchedulerStringId.VS_SchedulerReportsToolboxCategoryName">
<summary>
<para>The name of the Visual Studio Designer toolbox category containing Scheduler Reporting controls.
<para>
<b>Default Value:</b> "DX.{0}: Scheduler Reporting"
</para>
</para>
</summary>
</member>
<member name="T:DevExpress.XtraScheduler.AppointmentStorageBase">
<summary>
<para>A base class that represents a storage to hold a collection of appointments.
</para>
</summary>
</member>
<member name="M:DevExpress.XtraScheduler.AppointmentStorageBase.Add(DevExpress.XtraScheduler.Appointment)">
<summary>
<para>Appends the specified <see cref="T:DevExpress.XtraScheduler.Appointment"/> object to the collection which can be accessed via the storage's <see cref="P:DevExpress.XtraScheduler.AppointmentStorageBase.Items"/> property.
</para>
</summary>
<param name="apt">
An <see cref="T:DevExpress.XtraScheduler.Appointment"/> object to append to the collection.
</param>
<returns>An integer value indicating the position at which the new element was inserted.
</returns>
</member>
<member name="M:DevExpress.XtraScheduler.AppointmentStorageBase.AddRange(DevExpress.XtraScheduler.Appointment[])">
<summary>
<para>Appends an array of appointments to the storage's collection.
</para>
</summary>
<param name="items">
An array of <see cref="T:DevExpress.XtraScheduler.Appointment"/> objects to append to the collection.
</param>
</member>
<member name="P:DevExpress.XtraScheduler.AppointmentStorageBase.AllDayEventDateTimeMode">
<summary>
<para>Specifies the time zone calculation mode for the start and end time values of all-day events.
</para>
</summary>
<value>A <see cref="T:DevExpress.XtraScheduler.AllDayEventDateTimeMode"/> enumeration member.
</value>
</member>
<member name="M:DevExpress.XtraScheduler.AppointmentStorageBase.Contains(DevExpress.XtraScheduler.Appointment)">
<summary>
<para>Determines whether the storage's collection contains the specified appointment.
</para>
</summary>
<param name="apt">
An <see cref="T:DevExpress.XtraScheduler.Appointment"/> object to locate in the collection.
</param>
<returns>true if the collection contains the specified appointment; otherwise, false.
</returns>
</member>
<member name="P:DevExpress.XtraScheduler.AppointmentStorageBase.DataManager">
<summary>
<para>For internal use only.
</para>
</summary>
<value>A <b>DevExpress.XtraScheduler.Data.AppointmentDataManager</b> object.
</value>
</member>
<member name="P:DevExpress.XtraScheduler.AppointmentStorageBase.DateSaving">
<summary>
<para>Gets or sets a value indicating how the time of scheduled appointments should be saved.
</para>
</summary>
<value>A <see cref="T:DevExpress.XtraScheduler.DateSavingType"/> enumeration value specifying how the time should be saved. The default is <see cref="F:DevExpress.XtraScheduler.DateSavingType.LocalTime"/>.
</value>
</member>
<member name="P:DevExpress.XtraScheduler.AppointmentStorageBase.Filter">
<summary>
<para>Gets or sets a criteria string used to filter appointments.
</para>
</summary>
<value>A string, representing a logical expression.
</value>
</member>
<member name="M:DevExpress.XtraScheduler.AppointmentStorageBase.GetAppointmentById(System.Object)">
<summary>
<para>Gets the appointment by its identifier.
</para>
</summary>
<param name="id">
An object that is the unique identifier of an appointment.
</param>
<returns>An <see cref="T:DevExpress.XtraScheduler.Appointment"/> object.
</returns>
</member>
<member name="M:DevExpress.XtraScheduler.AppointmentStorageBase.IsNewAppointment(DevExpress.XtraScheduler.Appointment)">
<summary>
<para>Determines whether the appointment is already contained either in the appointment storage or in a series of its recurring appointments.
</para>
</summary>
<param name="apt">
true if the appointment isn't contained in this storage or in its recurrent series; otherwise, false.
</param>
<returns>An Appointment object which represents the appointment to check.
</returns>
</member>
<member name="P:DevExpress.XtraScheduler.AppointmentStorageBase.Item(System.Int32)">
<summary>
<para>Provides indexed access to individual items in the collection which can be accessed via the storage's <see cref="P:DevExpress.XtraScheduler.AppointmentStorageBase.Items"/> property.
</para>
</summary>
<param name="index">
A zero-based integer specifying the desired item's position within the collection. If it's negative or exceeds the last available index, an exception is raised.
</param>
<value>An <see cref="T:DevExpress.XtraScheduler.Appointment"/> object which represents the appointment at the specified position.
</value>
</member>
<member name="P:DevExpress.XtraScheduler.AppointmentStorageBase.Items">
<summary>
<para>Gets the collection of appointments within the storage.
</para>
</summary>
<value>An <see cref="T:DevExpress.XtraScheduler.AppointmentCollection"/> object that contains a collection of appointments.
</value>
</member>
<member name="E:DevExpress.XtraScheduler.AppointmentStorageBase.LoadException">
<summary>
<para>Fires when a problem occurs in appointment loading to the storage from an external data source.
</para>
</summary>
</member>
<member name="M:DevExpress.XtraScheduler.AppointmentStorageBase.LoadFromXml(System.String)">
<summary>
<para>Loads settings of appointments from the specified XML file to the appointment storage.
</para>
</summary>
<param name="fileName">
A <see cref="T:System.String"/> value specifying the path to the file from which appointments should be loaded. If an empty string is specified, an exception is raised.
</param>
</member>
<member name="M:DevExpress.XtraScheduler.AppointmentStorageBase.LoadFromXml(System.IO.Stream)">
<summary>
<para>Loads settings of appointments from the specified stream to the appointment storage.
</para>
</summary>
<param name="stream">
A <see cref="T:System.IO.Stream"/> descendant from which appointments are loaded. If <b>null</b> (<b>Nothing</b> in Visual Basic), an exception is raised.
</param>
</member>
<member name="M:DevExpress.XtraScheduler.AppointmentStorageBase.Remove(DevExpress.XtraScheduler.Appointment)">
<summary>
<para>Removes the specified <see cref="T:DevExpress.XtraScheduler.Appointment"/> object from the collection.
</para>
</summary>
<param name="apt">
An <see cref="T:DevExpress.XtraScheduler.Appointment"/> object representing the appointment to remove.
</param>
</member>
<member name="P:DevExpress.XtraScheduler.AppointmentStorageBase.ResourceSharing">
<summary>
<para>Gets or sets a value indicating whether an appointment could be shared between multiple resources.
</para>
</summary>
<value><b>true</b> if the resource sharing is enabled; otherwise, <b>false</b>.
</value>
</member>
<member name="M:DevExpress.XtraScheduler.AppointmentStorageBase.SaveToXml(System.String)">
<summary>
<para>Saves appointments from the storage to an XML file.
</para>
</summary>
<param name="fileName">
A <see cref="T:System.String"/> value specifying the path to the file where appointments should be written. If an empty string is specified, an exception is raised.
</param>
</member>
<member name="M:DevExpress.XtraScheduler.AppointmentStorageBase.SaveToXml(System.IO.Stream)">
<summary>
<para>Saves appointments from the storage to the specified stream.
</para>
</summary>
<param name="stream">
A <see cref="T:System.IO.Stream"/> descendant to which appointments should be written. If <b>null</b> (<b>Nothing</b> in Visual Basic), an exception is raised.
</param>
</member>
<member name="M:DevExpress.XtraScheduler.AppointmentStorageBase.SetAppointmentFactory(DevExpress.XtraScheduler.IAppointmentFactory)">
<summary>
<para>Assigns the specified appointment factory to the <see cref="T:DevExpress.XtraScheduler.AppointmentStorageBase"/>.
</para>
</summary>
<param name="factory">
An object implementing the <see cref="T:DevExpress.XtraScheduler.IAppointmentFactory"/> interface which specifies the new appointment factory for the storage.
</param>
</member>
<member name="P:DevExpress.XtraScheduler.AppointmentStorageBase.SupportsRecurrence">
<summary>
<para>Gets whether the information on appointment recurrence is obtained from a data source.
</para>
</summary>
<value><b>true</b> if the information on appointment recurrence is obtained from a data source; otherwise, <b>false</b>.
</value>
</member>
<member name="P:DevExpress.XtraScheduler.AppointmentStorageBase.SupportsReminders">
<summary>
<para>Gets whether the information on appointment reminders is obtained from a data source.
</para>
</summary>
<value><b>true</b> if the information on appointment reminders is obtained from a data source; otherwise, <b>false</b>.
</value>
</member>
<member name="T:DevExpress.XtraScheduler.Outlook.OutlookImportSynchronizer">
<summary>
<para>Represents an object implementing an appointment synchronization with an import scenario for MS Outlook.
</para>
</summary>
</member>
<member name="M:DevExpress.XtraScheduler.Outlook.OutlookImportSynchronizer.#ctor(DevExpress.XtraScheduler.SchedulerStorageBase)">
<summary>
<para>Initializes a new instance of the OutlookImportSynchronizer class with the specified Scheduler storage.
</para>
</summary>
<param name="storage">
A <see cref="T:DevExpress.XtraScheduler.SchedulerStorage"/> object representing a storage to which Outlook objects are imported.
</param>
</member>
<member name="P:DevExpress.XtraScheduler.Outlook.OutlookImportSynchronizer.CalendarFolderName">
<summary>
<para>Gets or sets the name of the calendar folder (MAPI) from which appointments are retrieved.
</para>
</summary>
<value>A string representing the name of a calendar folder.
</value>
</member>
<member name="M:DevExpress.XtraScheduler.Outlook.OutlookImportSynchronizer.SetCalendarProvider(DevExpress.XtraScheduler.Outlook.IOutlookCalendarProvider)">
<summary>
<para>Specifies a custom provider to process a collection of Outlook objects, before they are imported to Scheduler Storage.
</para>
</summary>
<param name="provider">
An object implementing the <see cref="T:DevExpress.XtraScheduler.Outlook.IOutlookCalendarProvider"/> interface.
</param>
</member>
<member name="T:DevExpress.XtraScheduler.Outlook.OutlookExportSynchronizer">
<summary>
<para>Represents an object implementing an appointment synchronization with export scenario for MS Outlook.
</para>
</summary>
</member>
<member name="M:DevExpress.XtraScheduler.Outlook.OutlookExportSynchronizer.#ctor(DevExpress.XtraScheduler.SchedulerStorageBase)">
<summary>
<para>Initializes a new instance of the OutlookExportSynchronizer class with the specified Scheduler storage.
</para>
</summary>
<param name="storage">
A <see cref="T:DevExpress.XtraScheduler.SchedulerStorage"/> object representing a storage to which Outlook objects are imported.
</param>
</member>
<member name="P:DevExpress.XtraScheduler.Outlook.OutlookExportSynchronizer.CalendarFolderName">
<summary>
<para>Gets or sets the name of the calendar folder (MAPI) from which appointments are retrieved.
</para>
</summary>
<value>A string representing the name of a calendar folder.
</value>
</member>
<member name="M:DevExpress.XtraScheduler.Outlook.OutlookExportSynchronizer.SetCalendarProvider(DevExpress.XtraScheduler.Outlook.IOutlookCalendarProvider)">
<summary>
<para>Specifies a custom provider to process a collection of Outlook objects, before they are exported to an MS Outlook calendar folder.
</para>
</summary>
<param name="provider">
An object implementing the <see cref="T:DevExpress.XtraScheduler.Outlook.IOutlookCalendarProvider"/> interface.
</param>
</member>
<member name="T:DevExpress.XtraScheduler.ExchangeExceptionEventHandler">
<summary>
<para>Represents a method that will handle the <see cref="E:DevExpress.XtraScheduler.Exchange.AppointmentExchanger.OnException"/> event.
</para>
</summary>
</member>
<member name="M:DevExpress.XtraScheduler.ExchangeExceptionEventHandler.Invoke(System.Object,DevExpress.XtraScheduler.ExchangeExceptionEventArgs)">
<summary>
<para>Represents a method that will handle the events associated with the <see cref="E:DevExpress.XtraScheduler.Exchange.AppointmentExchanger.OnException"/> event.
</para>
</summary>
<param name="sender">
The event source. This parameter identifies the <see cref="T:DevExpress.XtraScheduler.Exchange.AppointmentExchanger"/> which raised the event.
</param>
<param name="e">
An <see cref="T:DevExpress.XtraScheduler.ExchangeExceptionEventArgs"/> object which contains event data.
</param>
</member>
<member name="T:DevExpress.XtraScheduler.ExchangeExceptionEventArgs">
<summary>
<para>Provides data for the <see cref="E:DevExpress.XtraScheduler.Exchange.AppointmentExchanger.OnException"/> event.
</para>
</summary>
</member>
<member name="M:DevExpress.XtraScheduler.ExchangeExceptionEventArgs.#ctor(System.Exception)">
<summary>
<para>Initializes a new instance of the ExchangeExceptionEventArgs class with the specified settings.
</para>
</summary>
<param name="originalException">
A <see cref="T:System.Exception"/> object representing the original exception thrown.
</param>
</member>
<member name="P:DevExpress.XtraScheduler.ExchangeExceptionEventArgs.Handled">
<summary>
<para>Gets or sets whether an event was handled. If it was handled, the exception is not propagated.
</para>
</summary>
<value><b>true</b> if an exception is propagated; otherwise, <b>false</b>.
</value>
</member>
<member name="P:DevExpress.XtraScheduler.ExchangeExceptionEventArgs.OriginalException">
<summary>
<para>Provides access to a .NET exception which originated this event.
</para>
</summary>
<value>A <see cref="T:System.Exception"/> object representing the original exception thrown.
</value>
</member>
<member name="T:DevExpress.XtraScheduler.Exchange.AppointmentImportSynchronizer">
<summary>
<para>Serves as a base class that implements appointment synchronization for import scenarios.
</para>
</summary>
</member>
<member name="T:DevExpress.XtraScheduler.Exchange.AppointmentExportSynchronizer">
<summary>
<para>Serves as a base class that implements appointment synchronization for export scenarios.
</para>
</summary>
</member>
<member name="T:DevExpress.XtraScheduler.Outlook.Interop._AppointmentItem">
<summary>
<para>Represents an MS Outlook appointment.
</para>
</summary>
</member>
<member name="P:DevExpress.XtraScheduler.Outlook.Interop._AppointmentItem.AllDayEvent">
<summary>
<para>Gets or sets whether this appointment is an all-day or multiple-day event.
</para>
</summary>
<value><b>true</b> if an appointment takes up one or more entire days; otherwise, <b>false</b>.
</value>
</member>
<member name="P:DevExpress.XtraScheduler.Outlook.Interop._AppointmentItem.Body">
<summary>
<para>Gets or sets the text displayed in the appointment's body.
</para>
</summary>
<value>A string containing the body text.
</value>
</member>
<member name="P:DevExpress.XtraScheduler.Outlook.Interop._AppointmentItem.BusyStatus">
<summary>
<para>Gets or sets the busy status of this messaging user for this appointment.
</para>
</summary>
<value>An <b>DevExpress.XtraScheduler.Outlook.Interop.OlBusyStatus</b> enumeration member.
</value>
</member>
<member name="M:DevExpress.XtraScheduler.Outlook.Interop._AppointmentItem.ClearRecurrencePattern">
<summary>
<para>Removes any recurrence settings from this appointment.
</para>
</summary>
</member>
<member name="P:DevExpress.XtraScheduler.Outlook.Interop._AppointmentItem.CreationTime">
<summary>
<para>Gets the creation time for the Outlook item.
</para>
</summary>
<value>A <see cref="T:System.DateTime"/>, indicating the creation time for the event.
</value>
</member>
<member name="M:DevExpress.XtraScheduler.Outlook.Interop._AppointmentItem.Delete">
<summary>
<para>Removes the appointment item from the collection of Outlook messages.
</para>
</summary>
</member>
<member name="P:DevExpress.XtraScheduler.Outlook.Interop._AppointmentItem.End">
<summary>
<para>Gets or sets the ending date/time of this appointment.
</para>
</summary>
<value>A <see cref="T:System.DateTime"/> value representing the appointment's ending time.
</value>
</member>
<member name="P:DevExpress.XtraScheduler.Outlook.Interop._AppointmentItem.EndTimeZone">
<summary>
<para>Gets or sets the time zone for the end time of the appointment.
</para>
</summary>
<value>A <b>DevExpress.XtraScheduler.Outlook.Interop._TimeZone</b> object that contains information for a time zone as supported by Microsoft Windows.
</value>
</member>
<member name="P:DevExpress.XtraScheduler.Outlook.Interop._AppointmentItem.EntryID">
<summary>
<para>Gets the unique Entry ID of the appointment.
</para>
</summary>
<value>A string representing the unique identifier.
</value>
</member>
<member name="M:DevExpress.XtraScheduler.Outlook.Interop._AppointmentItem.GetRecurrencePattern">
<summary>
<para>Provides access to an object representing recurrence attributes of an appointment.
</para>
</summary>
<returns>A <b>DevExpress.XtraScheduler.Outlook.Interop.RecurrencePattern</b> object representing a recurrence pattern.
</returns>
</member>
<member name="P:DevExpress.XtraScheduler.Outlook.Interop._AppointmentItem.IsRecurring">
<summary>
<para>Indicates whether this appointment is a recurring appointment.
</para>
</summary>
<value><b>true</b> if this appointment is recurring; otherwise, <b>false</b>.
</value>
</member>
<member name="P:DevExpress.XtraScheduler.Outlook.Interop._AppointmentItem.LastModificationTime">
<summary>
<para>Gets the date and time that the Outlook item was last modified.
</para>
</summary>
<value>A <see cref="T:System.DateTime"/> value representing the appointment's last modification time.
</value>
</member>
<member name="P:DevExpress.XtraScheduler.Outlook.Interop._AppointmentItem.Location">
<summary>
<para>Gets or sets the specific location for the appointment.
</para>
</summary>
<value>A string indicating the appointment location.
</value>
</member>
<member name="P:DevExpress.XtraScheduler.Outlook.Interop._AppointmentItem.ReminderMinutesBeforeStart">
<summary>
<para>Gets or sets the number of minutes the reminder should occur prior to the start of the appointment.
</para>
</summary>
<value>An integer containing the number of minutes.
</value>
</member>
<member name="P:DevExpress.XtraScheduler.Outlook.Interop._AppointmentItem.ReminderSet">
<summary>
<para>Gets or sets whether a reminder has been set for this appointment.
</para>
</summary>
<value><b>true</b> if a reminder is set; otherwise, <b>false</b>.
</value>
</member>
<member name="M:DevExpress.XtraScheduler.Outlook.Interop._AppointmentItem.Save">
<summary>
<para>Saves the appointment to the current folder.
</para>
</summary>
</member>
<member name="P:DevExpress.XtraScheduler.Outlook.Interop._AppointmentItem.Start">
<summary>
<para>Gets or sets the starting time for an appointment.
</para>
</summary>
<value>A <see cref="T:System.DateTime"/> value representing the appointment's starting time.
</value>
</member>
<member name="P:DevExpress.XtraScheduler.Outlook.Interop._AppointmentItem.StartTimeZone">
<summary>
<para>Gets or sets the time zone for the start time of the appointment.
</para>
</summary>
<value>A <b>DevExpress.XtraScheduler.Outlook.Interop._TimeZone</b> object that contains information for a time zone as supported by Microsoft Windows.
</value>
</member>
<member name="P:DevExpress.XtraScheduler.Outlook.Interop._AppointmentItem.Subject">
<summary>
<para>Gets or sets the subject for the Outlook appointment.
</para>
</summary>
<value>A string representing the subject of an appointment.
</value>
</member>
<member name="T:DevExpress.XtraScheduler.Outlook.OutlookAppointmentSynchronizingEventArgs">
<summary>
<para>Provides data for the <see cref="E:DevExpress.XtraScheduler.Exchange.AppointmentSynchronizer.AppointmentSynchronizing"/> event of the <see cref="T:DevExpress.XtraScheduler.Exchange.AppointmentSynchronizer"/> class.
</para>
</summary>
</member>
<member name="M:DevExpress.XtraScheduler.Outlook.OutlookAppointmentSynchronizingEventArgs.#ctor(DevExpress.XtraScheduler.Outlook.Interop._AppointmentItem)">
<summary>
<para>Initializes a new instance of the OutlookAppointmentSynchronizingEventArgs class with the specified settings.
</para>
</summary>
<param name="olApt">
An <see cref="T:DevExpress.XtraScheduler.Outlook.Interop._AppointmentItem"/> object representing the MS Outlook appointment.
</param>
</member>
<member name="M:DevExpress.XtraScheduler.Outlook.OutlookAppointmentSynchronizingEventArgs.#ctor(DevExpress.XtraScheduler.Appointment,DevExpress.XtraScheduler.Outlook.Interop._AppointmentItem)">
<summary>
<para>Initializes a new instance of the OutlookAppointmentSynchronizingEventArgs class with the specified settings.
</para>
</summary>
<param name="apt">
An <see cref="T:DevExpress.XtraScheduler.Appointment"/> object representing the XtraScheduler appointment.
</param>
<param name="olApt">
An <see cref="T:DevExpress.XtraScheduler.Outlook.Interop._AppointmentItem"/> object representing the MS Outlook appointment.
</param>
</member>
<member name="P:DevExpress.XtraScheduler.Outlook.OutlookAppointmentSynchronizingEventArgs.OutlookAppointment">
<summary>
<para>Gets an MS Outlook appointment before synchronization.
</para>
</summary>
<value>An <see cref="T:DevExpress.XtraScheduler.Outlook.Interop._AppointmentItem"/> object representing the MS Outlook appointment.
</value>
</member>
<member name="T:DevExpress.XtraScheduler.Outlook.OutlookAppointmentSynchronizedEventArgs">
<summary>
<para>Provides data for the <see cref="E:DevExpress.XtraScheduler.Exchange.AppointmentSynchronizer.AppointmentSynchronized"/> event of the <see cref="T:DevExpress.XtraScheduler.Exchange.AppointmentImportSynchronizer"/> class.
</para>
</summary>
</member>
<member name="M:DevExpress.XtraScheduler.Outlook.OutlookAppointmentSynchronizedEventArgs.#ctor(DevExpress.XtraScheduler.Outlook.Interop._AppointmentItem)">
<summary>
<para>Initializes a new instance of the OutlookAppointmentSynchronizedEventArgs class with the specified settings.
</para>
</summary>
<param name="olApt">
An <see cref="T:DevExpress.XtraScheduler.Outlook.Interop._AppointmentItem"/> object representing the MS Outlook appointment.
</param>
</member>
<member name="M:DevExpress.XtraScheduler.Outlook.OutlookAppointmentSynchronizedEventArgs.#ctor(DevExpress.XtraScheduler.Appointment,DevExpress.XtraScheduler.Outlook.Interop._AppointmentItem)">
<summary>
<para>Initializes a new instance of the OutlookAppointmentSynchronizedEventArgs class with the specified settings.
</para>
</summary>
<param name="apt">
An <see cref="T:DevExpress.XtraScheduler.Appointment"/> object representing the XtraScheduler appointment.
</param>
<param name="olApt">
An <see cref="T:DevExpress.XtraScheduler.Outlook.Interop._AppointmentItem"/> object representing the MS Outlook appointment.
</param>
</member>
<member name="P:DevExpress.XtraScheduler.Outlook.OutlookAppointmentSynchronizedEventArgs.OutlookAppointment">
<summary>
<para>Gets an MS Outlook appointment after synchronization.
</para>
</summary>
<value>An <see cref="T:DevExpress.XtraScheduler.Outlook.Interop._AppointmentItem"/> object representing the MS Outlook appointment.
</value>
</member>
<member name="T:DevExpress.XtraScheduler.Outlook.OutlookAppointmentImportingEventArgs">
<summary>
<para>Provides data for the <see cref="E:DevExpress.XtraScheduler.Exchange.AppointmentImporter.AppointmentImporting"/> event of the <see cref="T:DevExpress.XtraScheduler.Outlook.OutlookImport"/> class.
</para>
</summary>
</member>
<member name="M:DevExpress.XtraScheduler.Outlook.OutlookAppointmentImportingEventArgs.#ctor(DevExpress.XtraScheduler.Appointment,DevExpress.XtraScheduler.Outlook.Interop._AppointmentItem)">
<summary>
<para>Initializes a new instance of the OutlookAppointmentImportingEventArgs class with the specified settings.
</para>
</summary>
<param name="apt">
An <see cref="T:DevExpress.XtraScheduler.Appointment"/> object representing the XtraScheduler appointment.
</param>
<param name="olApt">
An <see cref="T:DevExpress.XtraScheduler.Outlook.Interop._AppointmentItem"/> object representing the MS Outlook appointment.
</param>
</member>
<member name="P:DevExpress.XtraScheduler.Outlook.OutlookAppointmentImportingEventArgs.OutlookAppointment">
<summary>
<para>Gets an MS Outlook appointment before import.
</para>
</summary>
<value>An <see cref="T:DevExpress.XtraScheduler.Outlook.Interop._AppointmentItem"/> object representing the MS Outlook appointment.
</value>
</member>
<member name="T:DevExpress.XtraScheduler.Outlook.OutlookAppointmentImportedEventArgs">
<summary>
<para>Provides data for the <see cref="E:DevExpress.XtraScheduler.Exchange.AppointmentImporter.AppointmentImported"/> event of the <see cref="T:DevExpress.XtraScheduler.Outlook.OutlookImport"/> class.
</para>
</summary>
</member>
<member name="M:DevExpress.XtraScheduler.Outlook.OutlookAppointmentImportedEventArgs.#ctor(DevExpress.XtraScheduler.Appointment,DevExpress.XtraScheduler.Outlook.Interop._AppointmentItem)">
<summary>
<para>Initializes a new instance of the OutlookAppointmentImportedEventArgs class with the specified settings.
</para>
</summary>
<param name="apt">
An <see cref="T:DevExpress.XtraScheduler.Appointment"/> object representing the XtraScheduler appointment.
</param>
<param name="olApt">
An <see cref="T:DevExpress.XtraScheduler.Outlook.Interop._AppointmentItem"/> object representing the MS Outlook appointment.
</param>
</member>
<member name="P:DevExpress.XtraScheduler.Outlook.OutlookAppointmentImportedEventArgs.OutlookAppointment">
<summary>
<para>Gets an MS Outlook appointment after import.
</para>
</summary>
<value>An <see cref="T:DevExpress.XtraScheduler.Outlook.Interop._AppointmentItem"/> object representing the MS Outlook appointment.
</value>
</member>
<member name="T:DevExpress.XtraScheduler.Outlook.OutlookAppointmentExportingEventArgs">
<summary>
<para>Provides data for the <see cref="E:DevExpress.XtraScheduler.Exchange.AppointmentExporter.AppointmentExporting"/> event of the <see cref="T:DevExpress.XtraScheduler.Outlook.OutlookExport"/> class.
</para>
</summary>
</member>
<member name="M:DevExpress.XtraScheduler.Outlook.OutlookAppointmentExportingEventArgs.#ctor(DevExpress.XtraScheduler.Appointment,DevExpress.XtraScheduler.Outlook.Interop._AppointmentItem)">
<summary>
<para>Initializes a new instance of the OutlookAppointmentExportingEventArgs class with the specified settings.
</para>
</summary>
<param name="apt">
An <see cref="T:DevExpress.XtraScheduler.Appointment"/> object representing the XtraScheduler appointment.
</param>
<param name="olApt">
An <see cref="T:DevExpress.XtraScheduler.Outlook.Interop._AppointmentItem"/> object representing the MS Outlook appointment.
</param>
</member>
<member name="P:DevExpress.XtraScheduler.Outlook.OutlookAppointmentExportingEventArgs.OutlookAppointment">
<summary>
<para>Gets an MS Outlook appointment before export.
</para>
</summary>
<value>An <see cref="T:DevExpress.XtraScheduler.Outlook.Interop._AppointmentItem"/> object representing the MS Outlook appointment.
</value>
</member>
<member name="T:DevExpress.XtraScheduler.Outlook.OutlookAppointmentExportedEventArgs">
<summary>
<para>Provides data for the <see cref="E:DevExpress.XtraScheduler.Exchange.AppointmentExporter.AppointmentExported"/> event of the <see cref="T:DevExpress.XtraScheduler.Outlook.OutlookExport"/> class.
</para>
</summary>
</member>
<member name="M:DevExpress.XtraScheduler.Outlook.OutlookAppointmentExportedEventArgs.#ctor(DevExpress.XtraScheduler.Appointment,DevExpress.XtraScheduler.Outlook.Interop._AppointmentItem)">
<summary>
<para>Initializes a new instance of the OutlookAppointmentExportedEventArgs class with the specified settings.
</para>
</summary>
<param name="apt">
An <see cref="T:DevExpress.XtraScheduler.Appointment"/> object representing the XtraScheduler appointment.
</param>
<param name="olApt">
An <see cref="T:DevExpress.XtraScheduler.Outlook.Interop._AppointmentItem"/> object representing the MS Outlook appointment.
</param>
</member>
<member name="P:DevExpress.XtraScheduler.Outlook.OutlookAppointmentExportedEventArgs.OutlookAppointment">
<summary>
<para>Gets a MS Outlook appointment after export.
</para>
</summary>
<value>An <see cref="T:DevExpress.XtraScheduler.Outlook.Interop._AppointmentItem"/> object representing the MS Outlook appointment.
</value>
</member>
<member name="T:DevExpress.XtraScheduler.Outlook.OutlookCalendarFolder">
<summary>
<para>Represents a folder containing calendar items in MS Outlook.
</para>
</summary>
</member>
<member name="M:DevExpress.XtraScheduler.Outlook.OutlookCalendarFolder.#ctor(System.String,System.String,System.String)">
<summary>
<para>Initializes a new instance of the OutlookCalendarFolder class with the specified settings.
</para>
</summary>
<param name="name">
A string representing the name of the calendar folder
</param>
<param name="path">
A string representing the full path to the calendar folder
</param>
<param name="fullPath">
A string representing the full path to the calendar folder (corresponds to the MAPIFolder.FullFolderPath Property (Microsoft.Office.Interop.Outlook)), deprecated, not intended to be used.
</param>
</member>
<member name="P:DevExpress.XtraScheduler.Outlook.OutlookCalendarFolder.FullPath">
<summary>
<para>A string representing the full path to the calendar folder (corresponds to the MAPIFolder.FullFolderPath Property (Microsoft.Office.Interop.Outlook)), deprecated, not intended to be used.
</para>
</summary>
<value>A string containing the path to the calendar folder.
</value>
</member>
<member name="P:DevExpress.XtraScheduler.Outlook.OutlookCalendarFolder.Name">
<summary>
<para>Gets the name of the calendar folder.
</para>
</summary>
<value>A string containing the name of the folder.
</value>
</member>
<member name="P:DevExpress.XtraScheduler.Outlook.OutlookCalendarFolder.Path">
<summary>
<para>Gets the full path to the calendar folder.
</para>
</summary>
<value>A string containing the path to the folder.
</value>
</member>
<member name="T:DevExpress.XtraScheduler.SchedulerOptionsBehaviorBase">
<summary>
<para>Serves as a base class for classes that control certain basic characteristics of the scheduler.
</para>
</summary>
</member>
<member name="M:DevExpress.XtraScheduler.SchedulerOptionsBehaviorBase.Assign(DevExpress.Utils.Controls.BaseOptions)">
<summary>
<para>Copies all settings from the options object passed as the parameter to the current object.
</para>
</summary>
<param name="options">
A SchedulerOptionsBehaviorBase object (which is the <see cref="T:DevExpress.Utils.Controls.BaseOptions"/> descendant) whose settings are assigned to the current object.
</param>
</member>
<member name="P:DevExpress.XtraScheduler.SchedulerOptionsBehaviorBase.ClientTimeZoneId">
<summary>
<para>Gets or sets the client time zone of the Scheduler.
</para>
</summary>
<value>A string that uniquely identifies a particular time zone and corresponds to the System.TimeZoneInfo.Id property value.
</value>
</member>
<member name="P:DevExpress.XtraScheduler.SchedulerOptionsBehaviorBase.RecurrentAppointmentDeleteAction">
<summary>
<para>Gets or sets a type of action being performed when a command is issued to delete a recurrent appointment.
</para>
</summary>
<value>A <see cref="T:DevExpress.XtraScheduler.RecurrentAppointmentAction"/> enumeration value, representing a type of action.
</value>
</member>
<member name="P:DevExpress.XtraScheduler.SchedulerOptionsBehaviorBase.RecurrentAppointmentEditAction">
<summary>
<para>Gets or sets a type of action being performed when a command is issued to edit a recurrent appointment.
</para>
</summary>
<value>A <see cref="T:DevExpress.XtraScheduler.RecurrentAppointmentAction"/> enumeration value, representing a type of action.
</value>
</member>
<member name="P:DevExpress.XtraScheduler.SchedulerOptionsBehaviorBase.RemindersFormDefaultAction">
<summary>
<para>Gets or sets the type of default action which is applied when the Reminders Form is closed.
</para>
</summary>
<value>A <see cref="T:DevExpress.XtraScheduler.RemindersFormDefaultAction"/> enumeration value.
</value>
</member>
<member name="P:DevExpress.XtraScheduler.SchedulerOptionsBehaviorBase.SelectOnRightClick">
<summary>
<para>Gets or sets whether the right click selects a cell under the cursor.
</para>
</summary>
<value><b>true</b> to select a cell with a right click; otherwise, <b>false</b>.
</value>
</member>
<member name="P:DevExpress.XtraScheduler.SchedulerOptionsBehaviorBase.ShowRemindersForm">
<summary>
<para>Gets or sets whether a Reminders Form is shown.
</para>
</summary>
<value><b>true</b> if a Reminders Form is shown; otherwise, <b>false</b>.
</value>
</member>
<member name="T:DevExpress.XtraScheduler.Outlook.OutlookExchangeHelper">
<summary>
<para>Provides methods to get information on MS Outlook calendar folder names and paths.
</para>
</summary>
</member>
<member name="M:DevExpress.XtraScheduler.Outlook.OutlookExchangeHelper.GetOutlookCalendarFolders">
<summary>
<para>Gets a list of calendar folders for MS Outlook application.
</para>
</summary>
<returns>A list of <see cref="T:DevExpress.XtraScheduler.Outlook.OutlookCalendarFolder"/> objects, representing calendar folders accessible in MS Outlook.
</returns>
</member>
<member name="M:DevExpress.XtraScheduler.Outlook.OutlookExchangeHelper.GetOutlookCalendarNames">
<summary>
<para>Gets names of all accessible MS Outlook calendars.
</para>
</summary>
<returns>A string array containing calendar names.
</returns>
</member>
<member name="M:DevExpress.XtraScheduler.Outlook.OutlookExchangeHelper.GetOutlookCalendarPaths">
<summary>
<para>Gets full paths of all accessible MS Outlook calendars.
</para>
</summary>
<returns>An array of strings containing MS Outlook calendar paths.
</returns>
</member>
<member name="T:DevExpress.XtraScheduler.Outlook.IOutlookCalendarProvider">
<summary>
<para>Defines methods for retrieving calendar items from an MS Outlook application.
</para>
</summary>
</member>
<member name="M:DevExpress.XtraScheduler.Outlook.IOutlookCalendarProvider.GetCalendarItems(DevExpress.XtraScheduler.Outlook.Interop._Application,System.String)">
<summary>
<para>Override this method to retrieve calendar items by the specified path from the specified application.
</para>
</summary>
<param name="app">
An object that implements the <b>DevExpress.XtraScheduler.Outlook.Interop._Application</b> interface (MS Outlook instance).
</param>
<param name="folderPath">
A string representing a path to a calendar folder.
</param>
<returns>An object implementing the <b>DevExpress.XtraScheduler.Outlook.Interop._Items</b> interface.
</returns>
</member>
<member name="M:DevExpress.XtraScheduler.Outlook.IOutlookCalendarProvider.GetOutlookApplication">
<summary>
<para>Override this method to get a MS Outlook instance (or an application that can be used instead - it should implement the <b>DevExpress.XtraScheduler.Outlook.Interop._Application</b> interface).
</para>
</summary>
<returns>An object that implements the <b>DevExpress.XtraScheduler.Outlook.Interop._Application</b> interface.
</returns>
</member>
<member name="M:DevExpress.XtraScheduler.Outlook.IOutlookCalendarProvider.PrepareItemsForExchange(DevExpress.XtraScheduler.Outlook.Interop._Items)">
<summary>
<para>Override this method to create a list of items representing appointments in export/import processes.
</para>
</summary>
<param name="items">
A list of objects implementing the <b>DevExpress.XtraScheduler.Outlook.Interop._AppointmentItem</b> interface.
</param>
<returns>An object implementing the <b>DevExpress.XtraScheduler.Outlook.Interop._Items</b> interface.
</returns>
</member>
<member name="T:DevExpress.XtraScheduler.Outlook.ISupportCalendarFolders">
<summary>
<para>Enables you to get or set a calendar folder name for different types of appointment exchangers.
</para>
</summary>
</member>
<member name="P:DevExpress.XtraScheduler.Outlook.ISupportCalendarFolders.CalendarFolderName">
<summary>
<para>Gets or sets the name of the calendar folder in MS Outlook.
</para>
</summary>
<value>A string containing the calendar name.
</value>
</member>
<member name="T:DevExpress.XtraScheduler.iCalendar.Components.iCalendarComponentBase">
<summary>
<para>Represents a base class for iCalendar components.
</para>
</summary>
</member>
<member name="M:DevExpress.XtraScheduler.iCalendar.Components.iCalendarComponentBase.AddObject(DevExpress.XtraScheduler.iCalendar.Components.iCalendarBodyItem)">
<summary>
<para>Adds a calendar property or a component to the current calendar object.
</para>
</summary>
<param name="item">
A <b>DevExpress.XtraScheduler.iCalendar.Components.iCalendarBodyItem</b> descendant, representing a calendar object to add.
</param>
</member>
<member name="P:DevExpress.XtraScheduler.iCalendar.Components.iCalendarComponentBase.BodyItemType">
<summary>
<para>Gets the type of the calendar item.
</para>
</summary>
<value>A <b>DevExpress.XtraScheduler.iCalendar.Components.iCalendarBodyItemType</b> enumeration member.
</value>
</member>
<member name="P:DevExpress.XtraScheduler.iCalendar.Components.iCalendarComponentBase.CustomComponents">
<summary>
<para>Provides access to a collection of calendar components incorporated into the current component.
</para>
</summary>
<value>An <b>DevExpress.XtraScheduler.iCalendar.Components.iCalendarComponentCollection</b> object, representing a collection of calendar components.
</value>
</member>
<member name="P:DevExpress.XtraScheduler.iCalendar.Components.iCalendarComponentBase.CustomProperties">
<summary>
<para>Provides access to a collection of custom properties for a calendar component.
</para>
</summary>
<value>An <see cref="T:DevExpress.XtraScheduler.iCalendar.Components.iCalendarPropertyCollection"/> object representing a collection of custom properties.
</value>
</member>
<member name="M:DevExpress.XtraScheduler.iCalendar.Components.iCalendarComponentBase.WriteToStream(DevExpress.XtraScheduler.iCalendar.Native.iCalendarWriter)">
<summary>
<para>This member supports the internal infrastructure and is not intended to be used directly from your code.
</para>
</summary>
<param name="cw">
An object of the <b>DevExpress.XtraScheduler.iCalendar.Native.iCalendarWriter</b> type.
</param>
</member>
<member name="T:DevExpress.XtraScheduler.Outlook.OutlookExport">
<summary>
<para>Represents an object that exports Scheduler appointments to MS Outlook calendar items.
</para>
</summary>
</member>
<member name="M:DevExpress.XtraScheduler.Outlook.OutlookExport.#ctor(DevExpress.XtraScheduler.SchedulerStorageBase)">
<summary>
<para>Initializes a new instance of the OutlookExport class with the specified Scheduler storage.
</para>
</summary>
<param name="storage">
A <see cref="T:DevExpress.XtraScheduler.SchedulerStorage"/> object representing a storage containing appointments for export.
</param>
</member>
<member name="P:DevExpress.XtraScheduler.Outlook.OutlookExport.CalendarFolderName">
<summary>
<para>Gets or sets the name of the calendar folder (MAPI) from which appointments are retrieved.
</para>
</summary>
<value>A string representing the name of a calendar folder.
</value>
</member>
<member name="E:DevExpress.XtraScheduler.Outlook.OutlookExport.OutlookAppointmentItemAdded">
<summary>
<para>This member is obsolete. Use the <see cref="E:DevExpress.XtraScheduler.Exchange.AppointmentExporter.AppointmentExported"/> instead.
</para>
</summary>
</member>
<member name="M:DevExpress.XtraScheduler.Outlook.OutlookExport.SetCalendarProvider(DevExpress.XtraScheduler.Outlook.IOutlookCalendarProvider)">
<summary>
<para>Specifies a custom provider to process a collection of Outlook objects, before they are loaded into the Scheduler storage.
</para>
</summary>
<param name="provider">
An object implementing the <see cref="T:DevExpress.XtraScheduler.Outlook.IOutlookCalendarProvider"/> interface.
</param>
</member>
<member name="T:DevExpress.XtraScheduler.iCalendar.Components.iCalendarPropertyCollection">
<summary>
<para>Represents a collection of iCalendar component properties.
</para>
</summary>
</member>
<member name="M:DevExpress.XtraScheduler.iCalendar.Components.iCalendarPropertyCollection.#ctor">
<summary>
<para>Initializes a new instance of the iCalendarPropertyCollection class with default settings.
</para>
</summary>
</member>
<member name="T:DevExpress.XtraScheduler.iCalendar.Components.TextProperty">
<summary>
<para>Enables you to add a new property to the iCalendar component.
</para>
</summary>
</member>
<member name="M:DevExpress.XtraScheduler.iCalendar.Components.TextProperty.#ctor(System.String,System.String)">
<summary>
<para>Initializes a new instance of the TextProperty class with the specified settings.
</para>
</summary>
<param name="name">
A string specifying the name of the property.
</param>
<param name="value">
A string specifying the property's value.
</param>
</member>
<member name="M:DevExpress.XtraScheduler.iCalendar.Components.TextProperty.AddParameter(System.String,System.Collections.Generic.List`1)">
<summary>
<para>Adds property parameters to the iCalendar component property.
</para>
</summary>
<param name="name">
A string representing the name of a property.
</param>
<param name="values">
A list of strings, containing property values.
</param>
</member>
<member name="M:DevExpress.XtraScheduler.iCalendar.Components.TextProperty.AddParameter(System.String,System.String)">
<summary>
<para>Adds a property parameter to an iCalendar component property.
</para>
</summary>
<param name="name">
A string containing the parameter's name.
</param>
<param name="value">
A string containing the parameter's value.
</param>
</member>
<member name="P:DevExpress.XtraScheduler.iCalendar.Components.TextProperty.CustomParameters">
<summary>
<para>Gets a collection of parameters for this property.
</para>
</summary>
<value>An <b>DevExpress.XtraScheduler.iCalendar.Components.iCalendarNamedObjectCollection</b> class instance, representing a collection of parameters.
</value>
</member>
<member name="P:DevExpress.XtraScheduler.iCalendar.Components.TextProperty.Name">
<summary>
<para>Gets the name of a property represented by this TextProperty class instance.
</para>
</summary>
<value>A string representing the property's name.
</value>
</member>
<member name="T:DevExpress.XtraScheduler.iCalendar.Components.VEvent">
<summary>
<para>Represents an <b>VEVENT</b> calendar component of iCalendar object model.
</para>
</summary>
</member>
<member name="M:DevExpress.XtraScheduler.iCalendar.Components.VEvent.#ctor">
<summary>
<para>Initializes a new instance of the VEvent class with default settings.
</para>
</summary>
</member>
<member name="P:DevExpress.XtraScheduler.iCalendar.Components.VEvent.Alarms">
<summary>
<para>Gets a collection of <b>VALARM</b> calendar components for this event.
</para>
</summary>
<value>An instance of the <b>DevExpress.XtraScheduler.iCalendar.Components.VAlarmCollection</b> class representing a collection of <b>DevExpress.XtraScheduler.iCalendar.Components.VAlarm</b> objects.
</value>
</member>
<member name="M:DevExpress.XtraScheduler.iCalendar.Components.VEvent.ApplyTimeZone(DevExpress.XtraScheduler.iCalendar.Native.TimeZoneManager)">
<summary>
<para>Modifies VALARM data according to the time zone specified via the TimeZoneManager. This method is not intended to be used directly from your code.
</para>
</summary>
<param name="timeZoneManager">
A TimeZoneManager object.
</param>
</member>
<member name="P:DevExpress.XtraScheduler.iCalendar.Components.VEvent.Categories">
<summary>
<para>Provides access to the <b>CATEGORIES</b> property of a calendar component.
</para>
</summary>
<value>An object of the <b>DevExpress.XtraScheduler.iCalendar.Components.CategoriesProperty</b> type representing a CATEGORIES property.
</value>
</member>
<member name="P:DevExpress.XtraScheduler.iCalendar.Components.VEvent.Created">
<summary>
<para>Provides access to the <b>CREATED</b> property of a calendar component.
</para>
</summary>
<value>A <b>DevExpress.XtraScheduler.iCalendar.Components.DateTimeCreatedProperty</b> object, representing the CREATED calendar property.
</value>
</member>
<member name="P:DevExpress.XtraScheduler.iCalendar.Components.VEvent.Description">
<summary>
<para>Provides access to the <b>DESCRIPTION</b> property of a calendar component.
</para>
</summary>
<value>A <b>DevExpress.XtraScheduler.iCalendar.Components.DescriptionProperty</b> object representing the DESCRIPTION calendar property.
</value>
</member>
<member name="P:DevExpress.XtraScheduler.iCalendar.Components.VEvent.End">
<summary>
<para>Provides access to the <b>DTEND</b> property of a calendar component.
</para>
</summary>
<value>A <b>DevExpress.XtraScheduler.iCalendar.Components.DateTimeEndProperty</b> object representing the DTEND calendar property.
</value>
</member>
<member name="P:DevExpress.XtraScheduler.iCalendar.Components.VEvent.ExceptionDateTimes">
<summary>
<para>Provides access to the <b>EXDATE</b> property of a calendar component.
</para>
</summary>
<value>An <b>DevExpress.XtraScheduler.iCalendar.Components.ExceptionDateTimesPropertyCollection</b> object that is a collection of <b>DevExpress.XtraScheduler.iCalendar.Components.ExceptionDateTimesProperty</b> objects, each representing an appointment exception.
</value>
</member>
<member name="P:DevExpress.XtraScheduler.iCalendar.Components.VEvent.ExceptionRules">
<summary>
<para>Provides access to the <b>EXRULE</b> property of a calendar component.
</para>
</summary>
<value>A <b>DevExpress.XtraScheduler.iCalendar.Components.RecurrenceRulePropertyCollection</b> collection containing recurrence rules.
</value>
</member>
<member name="P:DevExpress.XtraScheduler.iCalendar.Components.VEvent.IsAllDay">
<summary>
<para>Gets whether the event is an 'all-day' event.
</para>
</summary>
<value><b>true</b> if the current event is an all-day event; otherwise, <b>false</b>.
</value>
</member>
<member name="P:DevExpress.XtraScheduler.iCalendar.Components.VEvent.IsChangedOccurrence">
<summary>
<para>Gets whether the event conforms to the 'changed occurrence' type.
</para>
</summary>
<value><b>true</b> if a current event is a changed occurrence; otherwise, <b>false</b>.
</value>
</member>
<member name="P:DevExpress.XtraScheduler.iCalendar.Components.VEvent.IsPattern">
<summary>
<para>Gets whether the event conforms to the 'pattern' type.
</para>
</summary>
<value><b>true</b> if a current event is a recurrence pattern; otherwise, <b>false</b>.
</value>
</member>
<member name="P:DevExpress.XtraScheduler.iCalendar.Components.VEvent.LastModified">
<summary>
<para>Provides access to the <b>LAST-MODIFIED</b> property of a calendar component.
</para>
</summary>
<value>A <b>DevExpress.XtraScheduler.iCalendar.Components.LastModifiedProperty</b> object, representing the LAST-MODIFIED calendar property.
</value>
</member>
<member name="P:DevExpress.XtraScheduler.iCalendar.Components.VEvent.Location">
<summary>
<para>Provides access to the <b>LOCATION</b> property of a calendar component.
</para>
</summary>
<value>A <b>DevExpress.XtraScheduler.iCalendar.Components.LocationProperty</b> object representing the LOCATION calendar property.
</value>
</member>
<member name="P:DevExpress.XtraScheduler.iCalendar.Components.VEvent.Name">
<summary>
<para>Gets the name of the calendar component ("VEVENT").
</para>
</summary>
<value>The string 'VEVENT'.
</value>
</member>
<member name="P:DevExpress.XtraScheduler.iCalendar.Components.VEvent.RecurrenceId">
<summary>
<para>Provides access to the <b>RECURRENCE-ID</b> property of a calendar component.
</para>
</summary>
<value>A <b>DevExpress.XtraScheduler.iCalendar.Components.RecurrenceIdProperty</b> object representing the RECURRENCE-ID calendar property.
</value>
</member>
<member name="P:DevExpress.XtraScheduler.iCalendar.Components.VEvent.RecurrenceRules">
<summary>
<para>Provides access to the <b>RRULE</b> property of a calendar component.
</para>
</summary>
<value>A <b>DevExpress.XtraScheduler.iCalendar.Components.RecurrenceRulePropertyCollection</b> class instance containing a list of objects used to represent recurrence rules.
</value>
</member>
<member name="P:DevExpress.XtraScheduler.iCalendar.Components.VEvent.Stamp">
<summary>
<para>Provides access to the <b>DTSTAMP</b> property of a calendar component.
</para>
</summary>
<value>A <b>DevExpress.XtraScheduler.iCalendar.Components.DateTimeStampProperty</b> object, representing the DTSTAMP calendar property.
</value>
</member>
<member name="P:DevExpress.XtraScheduler.iCalendar.Components.VEvent.Start">
<summary>
<para>Provides access to the <b>DTSTART</b> property of a calendar component.
</para>
</summary>
<value>A <b>DevExpress.XtraScheduler.iCalendar.Components.DateTimeStartProperty</b> object representing the DTSTART calendar property.
</value>
</member>
<member name="P:DevExpress.XtraScheduler.iCalendar.Components.VEvent.Summary">
<summary>
<para>Provides access to the <b>SUMMARY</b> property of a calendar component.
</para>
</summary>
<value>A <b>DevExpress.XtraScheduler.iCalendar.Components.SummaryProperty</b> object, representing the SUMMARY calendar property.
</value>
</member>
<member name="F:DevExpress.XtraScheduler.iCalendar.Components.VEvent.TokenName">
<summary>
<para>The name of this calendar component - VEVENT.
</para>
</summary>
<returns>A string 'VEVENT".
</returns>
</member>
<member name="P:DevExpress.XtraScheduler.iCalendar.Components.VEvent.UniqueIdentifier">
<summary>
<para>Provides access to the <b>UID</b> property of a calendar component.
</para>
</summary>
<value>A <b>DevExpress.XtraScheduler.iCalendar.Components.UniqueIdentifierProperty</b> object, representing the UID calendar property.
</value>
</member>
<member name="T:DevExpress.XtraScheduler.UserInterfaceObjectCollection`1">
<summary>
<para>Represents a base collection for user interface objects.
</para>
</summary>
</member>
<member name="M:DevExpress.XtraScheduler.UserInterfaceObjectCollection`1.Add(System.Drawing.Color,System.String,System.String)">
<summary>
<para>Appends a new user interface object with the specified color, display name and menu caption to the collection.
</para>
</summary>
<param name="color">
A <see cref="T:System.Drawing.Color"/> value that specifies the color of the user interface object. This value is assigned to the <see cref="P:DevExpress.XtraScheduler.UserInterfaceObject.Color"/> property.
</param>
<param name="displayName">
A <see cref="T:System.String"/> value that specifies the display name of the user interface object. This value is assigned to the <see cref="P:DevExpress.XtraScheduler.UserInterfaceObject.DisplayName"/> property.
</param>
<param name="menuCaption">
A <see cref="T:System.String"/> value that specifies the menu caption of the user interface object. This value is assigned to the <see cref="P:DevExpress.XtraScheduler.UserInterfaceObject.MenuCaption"/> property.
</param>
<returns>An integer value indicating the position at which the new element was inserted.
</returns>
</member>
<member name="M:DevExpress.XtraScheduler.UserInterfaceObjectCollection`1.Add(System.Drawing.Color,System.String)">
<summary>
<para>Appends a new user interface object with the specified color and display name to the collection.
</para>
</summary>
<param name="color">
A <see cref="T:System.Drawing.Color"/> value that specifies the color of the user interface object. This value is assigned to the <see cref="P:DevExpress.XtraScheduler.UserInterfaceObject.Color"/> property.
</param>
<param name="displayName">
A <see cref="T:System.String"/> value that specifies the display name of the user interface object. This value is assigned to the <see cref="P:DevExpress.XtraScheduler.UserInterfaceObject.DisplayName"/> property.
</param>
<returns>An integer value indicating the position at which the new element was inserted.
</returns>
</member>
<member name="M:DevExpress.XtraScheduler.UserInterfaceObjectCollection`1.LoadDefaults">
<summary>
<para>Restores the collection to its default state.
</para>
</summary>
</member>
<member name="T:DevExpress.XtraScheduler.AppointmentDependency">
<summary>
<para>A dependency established between tasks (<b>Appointment</b> objects) in the Gantt view.
</para>
</summary>
</member>
<member name="M:DevExpress.XtraScheduler.AppointmentDependency.#ctor(System.Object,System.Object)">
<summary>
<para>Initializes a new instance of the <see cref="T:DevExpress.XtraScheduler.AppointmentDependency"/> class with the specified Ids for the parent and dependent appointments.
</para>
</summary>
<param name="parentId">
An object that is the Id of the parent appointment.
</param>
<param name="dependentId">
An object that is the Id of the dependent appointment.
</param>
</member>
<member name="M:DevExpress.XtraScheduler.AppointmentDependency.#ctor(System.Object,System.Object,DevExpress.XtraScheduler.AppointmentDependencyType)">
<summary>
<para>Initializes a new instance of the <see cref="T:DevExpress.XtraScheduler.Appointment"/> class with the specified Ids for the parent and dependent appointments and the specified type of link.
</para>
</summary>
<param name="parentId">
An object that is the Id of the parent appointment.
</param>
<param name="dependentId">
An object that is the Id of the dependent appointment.
</param>
<param name="type">
An <see cref="T:DevExpress.XtraScheduler.AppointmentDependencyType"/> enumeration member specifying the type of link.
</param>
</member>
<member name="P:DevExpress.XtraScheduler.AppointmentDependency.DependentId">
<summary>
<para>Gets the Id of the dependent appointment.
</para>
</summary>
<value>An object that is the appointmen's Id.
</value>
</member>
<member name="P:DevExpress.XtraScheduler.AppointmentDependency.Empty">
<summary>
<para> [To be supplied] </para>
</summary>
<value> [To be supplied] </value>
</member>
<member name="M:DevExpress.XtraScheduler.AppointmentDependency.GetRow(DevExpress.XtraScheduler.SchedulerStorageBase)">
<summary>
<para>Provides access to the data record for the current appointment dependency.
</para>
</summary>
<param name="storage">
A <see cref="T:DevExpress.XtraScheduler.SchedulerStorage"/> instance that provides data for the appointment.
</param>
<returns>A data source object that contains current appointment dependency data.
</returns>
</member>
<member name="M:DevExpress.XtraScheduler.AppointmentDependency.GetValue(DevExpress.XtraScheduler.SchedulerStorageBase,System.String)">
<summary>
<para>Obtains the value of the specific field in the current appointment dependency data record, supplied by the specified storage object.
</para>
</summary>
<param name="storage">
A <see cref="T:DevExpress.XtraScheduler.SchedulerStorage"/> instance that provides data for the appointment dependency.
</param>
<param name="columnName">
A <see cref="T:System.String"/> that is the data field's name.
</param>
<returns>A <see cref="T:System.Object"/>, that is the field's contents.
</returns>
</member>
<member name="P:DevExpress.XtraScheduler.AppointmentDependency.ParentId">
<summary>
<para>Gets the Id of the parent appointment.
</para>
</summary>
<value>An object that is the appointmen's Id.
</value>
</member>
<member name="M:DevExpress.XtraScheduler.AppointmentDependency.SetValue(DevExpress.XtraScheduler.SchedulerStorageBase,System.String,System.Object)">
<summary>
<para>Performs a transaction to change the value of the specific field in the current appointment dependency data record supplied by the specified storage object.
</para>
</summary>
<param name="storage">
A <see cref="T:DevExpress.XtraScheduler.SchedulerStorage"/> instance that stores data for the appointment dependency.
</param>
<param name="columnName">
A <see cref="T:System.String"/>, that is the data field's name.
</param>
<param name="val">
A <see cref="T:System.Object"/>, representing the new value of the field.
</param>
</member>
<member name="P:DevExpress.XtraScheduler.AppointmentDependency.Type">
<summary>
<para>Gets or sets the type of dependency between parent and dependent appointments.
</para>
</summary>
<value>An <see cref="T:DevExpress.XtraScheduler.AppointmentDependencyType"/> enumeration value that is the type of dependency between appointments.
</value>
</member>
<member name="T:DevExpress.XtraScheduler.UI.AppointmentFormControllerBase">
<summary>
<para>Serves as a base class to provide the basic functionality for managing the appointment at the appointment's editing form.
</para>
</summary>
</member>
<member name="M:DevExpress.XtraScheduler.UI.AppointmentFormControllerBase.#ctor(DevExpress.XtraScheduler.Native.InnerSchedulerControl,DevExpress.XtraScheduler.Appointment)">
<summary>
<para>Initializes a new instance of the AppointmentFormControllerBase class with the specified appointment and scheduler control.
</para>
</summary>
<param name="innerControl">
An <see cref="T:DevExpress.XtraScheduler.Native.InnerSchedulerControl"/> object which represents the scheduler control of the appointment form controller.
</param>
<param name="apt">
An <see cref="T:DevExpress.XtraScheduler.Appointment"/> object which represents the appointment of the appointment form controller.
</param>
</member>
<member name="P:DevExpress.XtraScheduler.UI.AppointmentFormControllerBase.AllDay">
<summary>
<para>Gets or sets a value indicating if the appointment currently being edited in the form is an <b>All-day</b> appointment.
</para>
</summary>
<value><b>true</b> if this is an all-day appointment; otherwise, <b>false</b>.
</value>
</member>
<member name="M:DevExpress.XtraScheduler.UI.AppointmentFormControllerBase.ApplyChanges">
<summary>
<para>Copies the values of all the appointment copy's properties that are currently being edited in the form to the corresponding properties of the source appointment.
</para>
</summary>
</member>
<member name="M:DevExpress.XtraScheduler.UI.AppointmentFormControllerBase.ApplyRecurrence(DevExpress.XtraScheduler.Appointment)">
<summary>
<para>Copies the values of the specified recurrence pattern to the recurrence pattern of the appointment currently being edited in the form.
</para>
</summary>
<param name="patternCopy">
An <see cref="T:DevExpress.XtraScheduler.Appointment"/> object specifying the recurrence pattern the values of whose properties are to be copied.
</param>
</member>
<member name="M:DevExpress.XtraScheduler.UI.AppointmentFormControllerBase.AreExceptionsPresent">
<summary>
<para>Returns a value that indicates if the appointment currently being edited in the form is an exception, or it's a recurrence pattern with exceptions.
</para>
</summary>
<returns><b>true</b> if exceptions are present; otherwise, <b>false</b>.
</returns>
</member>
<member name="M:DevExpress.XtraScheduler.UI.AppointmentFormControllerBase.AssignRecurrenceInfoRangeProperties(DevExpress.XtraScheduler.RecurrenceInfo,DevExpress.XtraScheduler.RecurrenceRange,System.DateTime,System.DateTime,System.Int32,DevExpress.XtraScheduler.Appointment)">
<summary>
<para>Assigns recurrence info properties dependant on the specified recurrence range.
</para>
</summary>
<param name="rinfo">
A <see cref="T:DevExpress.XtraScheduler.RecurrenceInfo"/> object, representing the recurrence information being updated.
</param>
<param name="range">
A <see cref="T:DevExpress.XtraScheduler.RecurrenceRange"/> object, containing information on the recurrence range.
</param>
<param name="start">
A <see cref="T:System.DateTime"/> value, representing the appointment start.
</param>
<param name="end">
A <see cref="T:System.DateTime"/> value, representing the appointment end.
</param>
<param name="occurrenceCount">
An integer, specifying the number of occurrences.
</param>
<param name="pattern">
An <see cref="T:DevExpress.XtraScheduler.Appointment"/> object that is the pattern of the recurrence chain.
</param>
</member>
<member name="M:DevExpress.XtraScheduler.UI.AppointmentFormControllerBase.CalculateConflictCount">
<summary>
<para>Calculates the total count of conflicts where the current appointment conflicts with other appointments.
</para>
</summary>
<returns>An integer value representing the total conflicts count.
</returns>
</member>
<member name="P:DevExpress.XtraScheduler.UI.AppointmentFormControllerBase.CanDeleteAppointment">
<summary>
<para>Gets a value that indicates if the appointment currently being edited in the form can be deleted.
</para>
</summary>
<value><b>true</b> if the appointment can be deleted; otherwise, <b>false</b>.
</value>
</member>
<member name="P:DevExpress.XtraScheduler.UI.AppointmentFormControllerBase.CanEditResource">
<summary>
<para>Gets a value that indicates whether the resource can be changed for the appointment which is currently being edited in the form.
</para>
</summary>
<value><b>true</b> if the appointment's resource can be changed; otherwise, <b>false</b>.
</value>
</member>
<member name="M:DevExpress.XtraScheduler.UI.AppointmentFormControllerBase.DeleteAppointment">
<summary>
<para>Deletes the appointment currently being edited in the form from the collection that it belongs to.
</para>
</summary>
</member>
<member name="P:DevExpress.XtraScheduler.UI.AppointmentFormControllerBase.Description">
<summary>
<para>Gets or sets the text that will be displayed as the description of the appointment currently being edited in the form.
</para>
</summary>
<value>A <see cref="T:System.String"/> value that specifies the appointment's description.
</value>
</member>
<member name="P:DevExpress.XtraScheduler.UI.AppointmentFormControllerBase.DisplayEnd">
<summary>
<para>Gets or sets the value to display as the appointment's end time within the editing form.
</para>
</summary>
<value>A <see cref="T:System.DateTime"/> value, representing the end of the scheduled interval.
</value>
</member>
<member name="P:DevExpress.XtraScheduler.UI.AppointmentFormControllerBase.DisplayStart">
<summary>
<para>Gets or sets the value to display as the appointment's start time within the editing form.
</para>
</summary>
<value>A <see cref="T:System.DateTime"/> value, representing the beginning of the scheduled interval.
</value>
</member>
<member name="P:DevExpress.XtraScheduler.UI.AppointmentFormControllerBase.EditedAppointmentCopy">
<summary>
<para>Gets the copy of the appointment currently being edited in the form.
</para>
</summary>
<value>An <see cref="T:DevExpress.XtraScheduler.Appointment"/> object which represents a copy of the appointment.
</value>
</member>
<member name="P:DevExpress.XtraScheduler.UI.AppointmentFormControllerBase.EditedPattern">
<summary>
<para>Gets the pattern appointment object currently being edited in the <b>Recurrence</b> form.
</para>
</summary>
<value>An <see cref="T:DevExpress.XtraScheduler.Appointment"/> object that represents the pattern appointment.
</value>
</member>
<member name="P:DevExpress.XtraScheduler.UI.AppointmentFormControllerBase.End">
<summary>
<para>Gets or sets the value representing the appointment's end time within the editing form.
</para>
</summary>
<value>A <see cref="T:System.DateTime"/> value, representing the end of the scheduled interval.
</value>
</member>
<member name="P:DevExpress.XtraScheduler.UI.AppointmentFormControllerBase.EndDate">
<summary>
<para>Gets or sets the <b>end date</b> of the appointment currently being edited in the form.
</para>
</summary>
<value>A <see cref="T:System.DateTime"/> value representing the end date of the appointment.
</value>
</member>
<member name="P:DevExpress.XtraScheduler.UI.AppointmentFormControllerBase.EndTime">
<summary>
<para>Gets or sets the <b>end time</b> of the appointment currently being edited in the form.
</para>
</summary>
<value>A <see cref="T:System.TimeSpan"/> value representing the end time of the appointment.
</value>
</member>
<member name="P:DevExpress.XtraScheduler.UI.AppointmentFormControllerBase.HasReminder">
<summary>
<para>Gets or sets a value that indicates whether one or more reminders are associated with the currently edited appointment.
</para>
</summary>
<value><b>true</b> if the appointment has at least one reminder; otherwise, <b>false</b>.
</value>
</member>
<member name="M:DevExpress.XtraScheduler.UI.AppointmentFormControllerBase.IsAppointmentChanged">
<summary>
<para>Indicates whether the appointment is changed.
</para>
</summary>
<returns><b>true</b> if the appointment is changed; otherwise, <b>false</b>.
</returns>
</member>
<member name="M:DevExpress.XtraScheduler.UI.AppointmentFormControllerBase.IsConflictResolved">
<summary>
<para>Informs whether the appointment is in conflict with another, and they are not reconciled.
</para>
</summary>
<returns><b>true</b> if the appointment conflict is resolved; otherwise, <b>false</b>.
</returns>
</member>
<member name="P:DevExpress.XtraScheduler.UI.AppointmentFormControllerBase.IsNewAppointment">
<summary>
<para>Checks whether the currently edited appointment is a new and individual object.
</para>
</summary>
<value><b>true</b> if the current appointment is new; otherwise, <b>false</b>.
</value>
</member>
<member name="P:DevExpress.XtraScheduler.UI.AppointmentFormControllerBase.LabelId">
<summary>
<para>Gets or sets the index of the label, associated with the appointment.
</para>
</summary>
<value>An integer, specifying the index of the <see cref="T:DevExpress.XtraScheduler.AppointmentLabel"/> object within the <see cref="P:DevExpress.XtraScheduler.AppointmentStorage.Labels"/> collection.
</value>
</member>
<member name="P:DevExpress.XtraScheduler.UI.AppointmentFormControllerBase.Location">
<summary>
<para>Gets or sets the text, describing the site where the scheduled event happens.
</para>
</summary>
<value>A <see cref="T:System.String"/> value that specifies the appointment's location.
</value>
</member>
<member name="M:DevExpress.XtraScheduler.UI.AppointmentFormControllerBase.PrepareToRecurrenceEdit">
<summary>
<para>Finds and clones the recurrence pattern for the appointment, or creates it if it doesn't exist.
</para>
</summary>
<returns>An <see cref="T:DevExpress.XtraScheduler.Appointment"/> object, representing a copy of the appointment recurrence pattern.
</returns>
</member>
<member name="E:DevExpress.XtraScheduler.UI.AppointmentFormControllerBase.PropertyChanged">
<summary>
<para>Occurs when a property value of any of the standard appointment properties handled by the <b>AppointmentFormController</b>, changes.
</para>
</summary>
</member>
<member name="P:DevExpress.XtraScheduler.UI.AppointmentFormControllerBase.ReminderTimeBeforeStart">
<summary>
<para>Gets or sets the time interval ahead of the appointment's start time to activate the reminder.
</para>
</summary>
<value>A <see cref="T:System.TimeSpan"/> structure, representing the time interval.
</value>
</member>
<member name="M:DevExpress.XtraScheduler.UI.AppointmentFormControllerBase.RemoveRecurrence">
<summary>
<para>Destroys the edited appointment copy.
</para>
</summary>
</member>
<member name="P:DevExpress.XtraScheduler.UI.AppointmentFormControllerBase.ResourceId">
<summary>
<para>Gets or sets the unique identifier of the resource associated with the current appointment, or the ID of the first resource if resource sharing is enabled.
</para>
</summary>
<value>A <see cref="T:System.Object"/> value that specifies the resource's unique identifier.
</value>
</member>
<member name="P:DevExpress.XtraScheduler.UI.AppointmentFormControllerBase.ResourceIds">
<summary>
<para>Gets the identifiers of all the resources which are associated with the current appointment.
</para>
</summary>
<value>An <see cref="T:DevExpress.XtraScheduler.AppointmentResourceIdCollection"/> object which contains all the resources' identifiers.
</value>
</member>
<member name="P:DevExpress.XtraScheduler.UI.AppointmentFormControllerBase.ResourceSharing">
<summary>
<para>Gets a value indicating whether an appointment can be shared between multiple resources.
</para>
</summary>
<value><b>true</b> if the resource sharing is enabled; otherwise, <b>false</b>.
</value>
</member>
<member name="M:DevExpress.XtraScheduler.UI.AppointmentFormControllerBase.SetLabel(DevExpress.XtraScheduler.AppointmentLabelBase)">
<summary>
<para>Assigns the label to the current appointment.
</para>
</summary>
<param name="label">
An <see cref="T:DevExpress.XtraScheduler.AppointmentLabel"/> object to be assigned.
</param>
</member>
<member name="M:DevExpress.XtraScheduler.UI.AppointmentFormControllerBase.SetStatus(DevExpress.XtraScheduler.AppointmentStatusBase)">
<summary>
<para>Assigns the availability status to the appointment.
</para>
</summary>
<param name="status">
An <see cref="T:DevExpress.XtraScheduler.AppointmentStatus"/> object, representing the availability status of the appointment.
</param>
</member>
<member name="P:DevExpress.XtraScheduler.UI.AppointmentFormControllerBase.ShouldShowRecurrenceButton">
<summary>
<para>Checks whether the button, which enables the end-user to edit the appointment recurrence, should be visible.
</para>
</summary>
<value><b>true</b> to show the recurrence button; otherwise, <b>false</b>.
</value>
</member>
<member name="P:DevExpress.XtraScheduler.UI.AppointmentFormControllerBase.Start">
<summary>
<para>Gets or sets the value, representing the appointment's start time within the editing form.
</para>
</summary>
<value>A <see cref="T:System.DateTime"/> value, representing the beginning of the scheduled interval.
</value>
</member>
<member name="P:DevExpress.XtraScheduler.UI.AppointmentFormControllerBase.StartDate">
<summary>
<para>Gets or sets the date when the scheduled time interval starts for the current appointment.
</para>
</summary>
<value>A System.DateTime value, representing the date component of the interval's start time.
</value>
</member>
<member name="P:DevExpress.XtraScheduler.UI.AppointmentFormControllerBase.StartTime">
<summary>
<para>Gets or sets the time when the scheduled time interval starts for the current appointment.
</para>
</summary>
<value>A System.TimeSpan value, representing the time component of the interval's start time.
</value>
</member>
<member name="P:DevExpress.XtraScheduler.UI.AppointmentFormControllerBase.StatusId">
<summary>
<para>Gets or sets the index of the availability status, associated with the appointment.
</para>
</summary>
<value>An integer value that specifies the index of the corresponding <see cref="T:DevExpress.XtraScheduler.AppointmentStatus"/> object within the <see cref="P:DevExpress.XtraScheduler.AppointmentStorage.Statuses"/> collection.
</value>
</member>
<member name="P:DevExpress.XtraScheduler.UI.AppointmentFormControllerBase.Subject">
<summary>
<para>Gets or sets the text of the appointment's subject.
</para>
</summary>
<value>A <see cref="T:System.String"/> value that specifies the appointment's subject text.
</value>
</member>
<member name="M:DevExpress.XtraScheduler.UI.AppointmentFormControllerBase.ValidateInterval(System.DateTime,System.TimeSpan,System.DateTime,System.TimeSpan)">
<summary>
<para>Checks whether the specified date and time values produce the valid time interval.
</para>
</summary>
<param name="startDate">
A <see cref="T:System.DateTime"/> value, representing the date component of the interval's start.
</param>
<param name="startTime">
A <see cref="T:System.TimeSpan"/> value, representing the time component of the interval's start.
</param>
<param name="endDate">
A <see cref="T:System.DateTime"/> value, representing the date component of the interval's end.
</param>
<param name="endTime">
A <see cref="T:System.DateTime"/> value, representing the time component of the interval's end.
</param>
<returns><b>true</b> if the time interval is valid; otherwise, <b>false</b>.
</returns>
</member>
<member name="M:DevExpress.XtraScheduler.UI.AppointmentFormControllerBase.ValidateInterval(System.DateTime,System.DateTime)">
<summary>
<para>Checks whether the specified date and time values produce the valid time interval.
</para>
</summary>
<param name="start">
A <see cref="T:System.DateTime"/> value, representing the interval's start.
</param>
<param name="end">
A <see cref="T:System.DateTime"/> value, representing the interval's end.
</param>
<returns><b>true</b> if the time interval is valid; otherwise, <b>false</b>.
</returns>
</member>
<member name="T:DevExpress.XtraScheduler.Drawing.AppointmentImageInfoCore">
<summary>
<para>Represents an object that contains information on the image displayed within the appointment.
</para>
</summary>
</member>
<member name="P:DevExpress.XtraScheduler.Drawing.AppointmentImageInfoCore.ImageIndex">
<summary>
<para>Gets or sets the index of an image, associated with the current appointment.
</para>
</summary>
<value>An integer, representing the index of an image.
</value>
</member>
<member name="P:DevExpress.XtraScheduler.Drawing.AppointmentImageInfoCore.ImageType">
<summary>
<para>Gets the type of an image, associated with the appointment.
</para>
</summary>
<value>An <see cref="T:DevExpress.XtraScheduler.Drawing.AppointmentImageType"/> enumeration value, specifying the appointment image's type.
</value>
</member>
<member name="P:DevExpress.XtraScheduler.Drawing.AppointmentImageInfoCore.Visible">
<summary>
<para>Specifies whether the image, associated with the appointment, is visible or hidden.
</para>
</summary>
<value><b>true</b> if the image is visible; otherwise, <b>false</b>.
</value>
</member>
<member name="T:DevExpress.XtraScheduler.AppointmentLabelBaseCollection">
<summary>
<para>Represents the base class for the collection of appointment labels.
</para>
</summary>
</member>
<member name="T:DevExpress.XtraScheduler.AppointmentLabelBase">
<summary>
<para>Represents the base class for the appointment label.
</para>
</summary>
</member>
<member name="T:DevExpress.XtraScheduler.PersistentObjectCancelEventArgs">
<summary>
<para>Provides data for the <b>persistent object</b> events of the <see cref="T:DevExpress.XtraScheduler.SchedulerStorage"/> that have a <b>cancel</b> option.
</para>
</summary>
</member>
<member name="M:DevExpress.XtraScheduler.PersistentObjectCancelEventArgs.#ctor(DevExpress.XtraScheduler.PersistentObject)">
<summary>
<para>Initializes a new instance of the PersistentObjectCancelEventArgs class with the specified settings.
</para>
</summary>
<param name="obj">
A <see cref="T:DevExpress.XtraScheduler.PersistentObject"/> value which represents the event's persistent object. This value is assigned to the <see cref="P:DevExpress.XtraScheduler.PersistentObjectEventArgs.Object"/> property.
</param>
</member>
<member name="P:DevExpress.XtraScheduler.PersistentObjectCancelEventArgs.Cancel">
<summary>
<para>Gets or sets whether the operation performed on the processed event should be canceled.
</para>
</summary>
<value><b>true</b> to cancel the operation performed on the event; otherwise, <b>false</b>.
</value>
</member>
<member name="T:DevExpress.XtraScheduler.SchedulerStorageBase">
<summary>
<para>Serves as a base class for a class that represents a storage which holds data for the XtraScheduler control.
</para>
</summary>
</member>
<member name="P:DevExpress.XtraScheduler.SchedulerStorageBase.AppointmentCacheEnabled">
<summary>
<para>This member supports the internal infrastructure and is not intended to be used directly from your code.
</para>
</summary>
<value>A <see cref="T:System.Boolean"/> value.
</value>
</member>
<member name="E:DevExpress.XtraScheduler.SchedulerStorageBase.AppointmentChanging">
<summary>
<para>Fires when an appointment's property is changing.
</para>
</summary>
</member>
<member name="E:DevExpress.XtraScheduler.SchedulerStorageBase.AppointmentCollectionAutoReloading">
<summary>
<para>Occurs when the data source which contains appointment records is modified and appointments are set to be automatically reloaded.
</para>
</summary>
</member>
<member name="E:DevExpress.XtraScheduler.SchedulerStorageBase.AppointmentCollectionCleared">
<summary>
<para>Fires after the appointment collection has been cleared.
</para>
</summary>
</member>
<member name="E:DevExpress.XtraScheduler.SchedulerStorageBase.AppointmentCollectionLoaded">
<summary>
<para>Fires after appointments have been loaded into the <see cref="T:DevExpress.XtraScheduler.AppointmentBaseCollection"/> collection.
</para>
</summary>
</member>
<member name="E:DevExpress.XtraScheduler.SchedulerStorageBase.AppointmentDeleting">
<summary>
<para>Allows you to cancel the deletion of an appointment.
</para>
</summary>
</member>
<member name="E:DevExpress.XtraScheduler.SchedulerStorageBase.AppointmentDependenciesChanged">
<summary>
<para>Fires when the properties of the appointment dependency have been changed.
</para>
</summary>
</member>
<member name="E:DevExpress.XtraScheduler.SchedulerStorageBase.AppointmentDependenciesDeleted">
<summary>
<para>Fires after deletion of one or several appointment dependencies.
</para>
</summary>
</member>
<member name="E:DevExpress.XtraScheduler.SchedulerStorageBase.AppointmentDependenciesInserted">
<summary>
<para>Fires after one or several appointment dependencies have been added to the collection.
</para>
</summary>
</member>
<member name="E:DevExpress.XtraScheduler.SchedulerStorageBase.AppointmentDependencyChanging">
<summary>
<para>Fires when the appointment dependency type is changing.
</para>
</summary>
</member>
<member name="E:DevExpress.XtraScheduler.SchedulerStorageBase.AppointmentDependencyCollectionAutoReloading">
<summary>
<para>Occurs when the data source which contains appointment dependency records is modified and dependencies are set to be automatically reloaded.
</para>
</summary>
</member>
<member name="E:DevExpress.XtraScheduler.SchedulerStorageBase.AppointmentDependencyCollectionCleared">
<summary>
<para>Fires after the appointment dependency collection has been cleared.
</para>
</summary>
</member>
<member name="E:DevExpress.XtraScheduler.SchedulerStorageBase.AppointmentDependencyCollectionLoaded">
<summary>
<para>Fires after appointment dependencies have been loaded into the storage.
</para>
</summary>
</member>
<member name="E:DevExpress.XtraScheduler.SchedulerStorageBase.AppointmentDependencyDeleting">
<summary>
<para>Allows you to cancel the deletion of an appointment dependency.
</para>
</summary>
</member>
<member name="E:DevExpress.XtraScheduler.SchedulerStorageBase.AppointmentDependencyInserting">
<summary>
<para>Allows you to cancel the insertion of an appointment dependency.
</para>
</summary>
</member>
<member name="E:DevExpress.XtraScheduler.SchedulerStorageBase.AppointmentInserting">
<summary>
<para>Allows you to cancel the insertion of an appointment.
</para>
</summary>
</member>
<member name="E:DevExpress.XtraScheduler.SchedulerStorageBase.AppointmentsChanged">
<summary>
<para>Fires when the appointments' properties have been changed.
</para>
</summary>
</member>
<member name="E:DevExpress.XtraScheduler.SchedulerStorageBase.AppointmentsDeleted">
<summary>
<para>Fires after deletion of one or several appointments.
</para>
</summary>
</member>
<member name="E:DevExpress.XtraScheduler.SchedulerStorageBase.AppointmentsInserted">
<summary>
<para>Fires after one or several appointments have been added to the collection.
</para>
</summary>
</member>
<member name="M:DevExpress.XtraScheduler.SchedulerStorageBase.BeginInit">
<summary>
<para>Starts the scheduler storage initialization. Initialization occurs at runtime.
</para>
</summary>
</member>
<member name="M:DevExpress.XtraScheduler.SchedulerStorageBase.BeginUpdate">
<summary>
<para>Locks the SchedulerStorageBase object by disallowing visual updates until the <b>EndUpdate</b> or <b>CancelUpdate</b> method is called.
</para>
</summary>
</member>
<member name="M:DevExpress.XtraScheduler.SchedulerStorageBase.CancelUpdate">
<summary>
<para>Unlocks the SchedulerStorageBase object after it has been locked by the <b>BeginUpdate</b> method, without causing an immediate visual update.
</para>
</summary>
</member>
<member name="M:DevExpress.XtraScheduler.SchedulerStorageBase.CreateAppointment(DevExpress.XtraScheduler.AppointmentType)">
<summary>
<para>Creates an appointment of the specified type.
</para>
</summary>
<param name="type">
An <see cref="T:DevExpress.XtraScheduler.AppointmentType"/> enumeration value specifying the type of the created appointment.
</param>
<returns>An <see cref="T:DevExpress.XtraScheduler.Appointment"/> object which represents an appointment of the specified type.
</returns>
</member>
<member name="M:DevExpress.XtraScheduler.SchedulerStorageBase.CreateAppointmentDependency(System.Object,System.Object)">
<summary>
<para>Creates a dependency between two appointments specified by their Ids.
</para>
</summary>
<param name="parentId">
An object that is the Id of the parent appointment.
</param>
<param name="dependentId">
An object that is the Id of the dependent appointment.
</param>
<returns>An <see cref="T:DevExpress.XtraScheduler.AppointmentDependency"/> object.
</returns>
</member>
<member name="M:DevExpress.XtraScheduler.SchedulerStorageBase.CreateOutlookExporter">
<summary>
<para>Creates an object which provides the capability to control how data is exported to MS Outlook's Calendar.
</para>
</summary>
<returns>An <see cref="T:DevExpress.XtraScheduler.Exchange.AppointmentExporter"/> object which can export data to MS Outlook's Calendar.
</returns>
</member>
<member name="M:DevExpress.XtraScheduler.SchedulerStorageBase.CreateOutlookExportSynchronizer">
<summary>
<para>Creates an object which allows you to control how MS Outlook's Calendar is synchronized with data in the storage.
</para>
</summary>
<returns>A <b>DevExpress.XtraScheduler.Exchange.AppointmentExportSynchronizer</b> object which allows MS Outlook's Calendar to be synchronized with the data in storage.
</returns>
</member>
<member name="M:DevExpress.XtraScheduler.SchedulerStorageBase.CreateOutlookImporter">
<summary>
<para>Creates an object which allows you to control how data is imported from MS Outlook's Calendar.
</para>
</summary>
<returns>An <see cref="T:DevExpress.XtraScheduler.Exchange.AppointmentImporter"/> object which can import data from MS Outlook's Calendar.
</returns>
</member>
<member name="M:DevExpress.XtraScheduler.SchedulerStorageBase.CreateOutlookImportSynchronizer">
<summary>
<para>Creates an object which allows you to control how data in the storage is synchronized with data in MS Outlook's Calendar.
</para>
</summary>
<returns>An <see cref="T:DevExpress.XtraScheduler.Exchange.AppointmentImportSynchronizer"/> object which can synchronize data in the storage with data in MS Outlook's Calendar.
</returns>
</member>
<member name="M:DevExpress.XtraScheduler.SchedulerStorageBase.CreateResource">
<summary>
<para>Creates a resource.
</para>
</summary>
<returns>A <see cref="T:DevExpress.XtraScheduler.Resource"/> object.
</returns>
</member>
<member name="M:DevExpress.XtraScheduler.SchedulerStorageBase.CreateResource(System.Object)">
<summary>
<para>Creates a new resource with the specified ID.
</para>
</summary>
<param name="resourceId">
An object, representing a unique resource identifier.
</param>
<returns>A <see cref="T:DevExpress.XtraScheduler.Resource"/> object.
</returns>
</member>
<member name="P:DevExpress.XtraScheduler.SchedulerStorageBase.EnableReminders">
<summary>
<para>Gets or sets whether the <see cref="T:DevExpress.XtraScheduler.Reminder"/> availability for appointments is enabled.
</para>
</summary>
<value><b>true</b> to enable reminders; otherwise, <b>false</b>.
</value>
</member>
<member name="M:DevExpress.XtraScheduler.SchedulerStorageBase.EndInit">
<summary>
<para>Ends the scheduler storage initialization.
</para>
</summary>
</member>
<member name="M:DevExpress.XtraScheduler.SchedulerStorageBase.EndUpdate">
<summary>
<para>Unlocks the SchedulerStorageBase object after a call to the <b>BeginUpdate</b> method and causes an immediate visual update.
</para>
</summary>
</member>
<member name="M:DevExpress.XtraScheduler.SchedulerStorageBase.ExportToICalendar(System.String)">
<summary>
<para>Saves all appointments to file in iCalendar format.
</para>
</summary>
<param name="path">
A string that represents a file path to which the appointments will be exported.
</param>
</member>
<member name="M:DevExpress.XtraScheduler.SchedulerStorageBase.ExportToICalendar(System.IO.Stream)">
<summary>
<para>Exports appointments in the scheduler to a stream in the iCalendar format.
</para>
</summary>
<param name="stream">
A <see cref="T:System.IO.Stream"/> object which specifies the stream into which the scheduler's data will be exported.
</param>
</member>
<member name="M:DevExpress.XtraScheduler.SchedulerStorageBase.ExportToOutlook">
<summary>
<para>Exports the data in the storage to the MS Outlook calendar.
</para>
</summary>
</member>
<member name="M:DevExpress.XtraScheduler.SchedulerStorageBase.ExportToVCalendar(System.IO.Stream)">
<summary>
<para>Exports the data in the scheduler to a stream in the vCalendar format.
</para>
</summary>
<param name="stream">
A <see cref="T:System.IO.Stream"/> object which specifies the stream into which the scheduler's data will be exported.
</param>
</member>
<member name="M:DevExpress.XtraScheduler.SchedulerStorageBase.ExportToVCalendar(System.String)">
<summary>
<para>Exports the data in the scheduler to a file in the vCalendar format.
</para>
</summary>
<param name="path">
A <see cref="T:System.String"/>, containing the full path (including the file name and extension) of the file to which the scheduler's data will be exported.
</param>
</member>
<member name="E:DevExpress.XtraScheduler.SchedulerStorageBase.FetchAppointments">
<summary>
<para>Occurs before the SchedulerStorageBase starts retrieving the appointments for the specified time interval.
</para>
</summary>
</member>
<member name="E:DevExpress.XtraScheduler.SchedulerStorageBase.FilterAppointment">
<summary>
<para>Enables specific appointments to be hidden in the Scheduler control.
</para>
</summary>
</member>
<member name="E:DevExpress.XtraScheduler.SchedulerStorageBase.FilterDependency">
<summary>
<para>Hides certain appointment dependencies in the Gantt view.
</para>
</summary>
</member>
<member name="E:DevExpress.XtraScheduler.SchedulerStorageBase.FilterResource">
<summary>
<para>Enables specific resources to be hidden in the Scheduler control.
</para>
</summary>
</member>
<member name="M:DevExpress.XtraScheduler.SchedulerStorageBase.GetAppointments(DevExpress.XtraScheduler.TimeInterval)">
<summary>
<para>Retrieves the collection of appointments that fall within the specified time interval.
</para>
</summary>
<param name="interval">
A <see cref="T:DevExpress.XtraScheduler.TimeInterval"/> object which contains the required time interval.
</param>
<returns>An <see cref="T:DevExpress.XtraScheduler.AppointmentBaseCollection"/> collection of appointments which belong to the specified time interval.
</returns>
</member>
<member name="M:DevExpress.XtraScheduler.SchedulerStorageBase.GetAppointments(System.DateTime,System.DateTime)">
<summary>
<para>Retrieves the collection of appointments that fall within the specified time interval.
</para>
</summary>
<param name="start">
A <see cref="T:System.DateTime"/> value that specifies the start time of the required time interval.
</param>
<param name="end">
A <see cref="T:System.DateTime"/> value that specifies the end time of the required time interval.
</param>
<returns>An <see cref="T:DevExpress.XtraScheduler.AppointmentBaseCollection"/> collection of appointments which belong to the specified time interval.
</returns>
</member>
<member name="M:DevExpress.XtraScheduler.SchedulerStorageBase.GetAppointments(DevExpress.XtraScheduler.TimeIntervalCollection)">
<summary>
<para>Retrieves the collection of appointments that fall within the specified time interval.
</para>
</summary>
<param name="intervals">
A <see cref="T:DevExpress.XtraScheduler.TimeIntervalCollection"/> object whose Start and End members identify the required time interval.
</param>
<returns>An <see cref="T:DevExpress.XtraScheduler.AppointmentBaseCollection"/> collection of appointments which belong to the specified time interval.
</returns>
</member>
<member name="M:DevExpress.XtraScheduler.SchedulerStorageBase.GetLabelColor(System.Int32)">
<summary>
<para>Returns the color of the specified label.
</para>
</summary>
<param name="labelId">
A zero-based integer value which identifies a label.
</param>
<returns>A <see cref="T:System.Drawing.Color"/> structure which represents the label's color. A <b>Color.White</b> value if the label isn't found.
</returns>
</member>
<member name="M:DevExpress.XtraScheduler.SchedulerStorageBase.GetObjectRow(DevExpress.XtraScheduler.PersistentObject)">
<summary>
<para>Returns the data row object that contains information about the persistent object specified.
</para>
</summary>
<param name="obj">
A <see cref="T:DevExpress.XtraScheduler.PersistentObject"/> descendant instance which represents the persistent object (an appointment or resource).
</param>
<returns>A <see cref="T:System.Object"/> which is the source data object (or the data row), providing information for the persistent object.
</returns>
</member>
<member name="M:DevExpress.XtraScheduler.SchedulerStorageBase.GetObjectValue(DevExpress.XtraScheduler.PersistentObject,System.String)">
<summary>
<para>Returns the value of the specified field in the data row that contains information about the persistent object.
</para>
</summary>
<param name="obj">
A <see cref="T:DevExpress.XtraScheduler.PersistentObject"/> descendant instance which is the persistent object (an appointment or resource).
</param>
<param name="columnName">
A <see cref="T:System.String"/> which specifies the name of the data field.
</param>
<returns>A <see cref="T:System.Object"/> which is the value of the data field.
</returns>
</member>
<member name="M:DevExpress.XtraScheduler.SchedulerStorageBase.ImportFromICalendar(System.String)">
<summary>
<para>Imports appointments from the file in iCalendar format.
</para>
</summary>
<param name="path">
A string that represents a file path from which the appointments will be imported.
</param>
</member>
<member name="M:DevExpress.XtraScheduler.SchedulerStorageBase.ImportFromICalendar(System.IO.Stream)">
<summary>
<para>Imports appointments from the file in iCalendar format.
</para>
</summary>
<param name="stream">
A <see cref="T:System.IO.Stream"/> object which specifies the stream from which the appointment data is imported.
</param>
</member>
<member name="M:DevExpress.XtraScheduler.SchedulerStorageBase.ImportFromOutlook">
<summary>
<para>Imports data from MS Outlook's Calendar to the scheduler's storage.
</para>
</summary>
</member>
<member name="M:DevExpress.XtraScheduler.SchedulerStorageBase.ImportFromVCalendar(System.String)">
<summary>
<para>Imports data into the scheduler from a file in the vCalendar format.
</para>
</summary>
<param name="path">
A <see cref="T:System.String"/>, containing the full path (including the file name and extension) of the file from which the scheduler's data will be loaded.
</param>
</member>
<member name="M:DevExpress.XtraScheduler.SchedulerStorageBase.ImportFromVCalendar(System.IO.Stream)">
<summary>
<para>Imports the scheduler's data from a stream whose data is in the vCalendar format.
</para>
</summary>
<param name="stream">
A <see cref="T:System.IO.Stream"/> object which specifies the stream that contains the data to import to the scheduler.
</param>
</member>
<member name="P:DevExpress.XtraScheduler.SchedulerStorageBase.IsUpdateLocked">
<summary>
<para>Gets whether the storage has been locked for updating.
</para>
</summary>
<value><b>true</b> if the storage is locked; otherwise, <b>false</b>.
</value>
</member>
<member name="M:DevExpress.XtraScheduler.SchedulerStorageBase.RefreshData">
<summary>
<para>Updates XtraScheduler to reflect any changes made in the data sources which store the appointments and appointment resources.
</para>
</summary>
</member>
<member name="E:DevExpress.XtraScheduler.SchedulerStorageBase.ReminderAlert">
<summary>
<para>Occurs when a reminder alert is invoked.
</para>
</summary>
</member>
<member name="P:DevExpress.XtraScheduler.SchedulerStorageBase.RemindersCheckInterval">
<summary>
<para>Gets or sets the time interval a reminder's alert time should be checked (in milliseconds).
</para>
</summary>
<value>An integer value which represents the time interval between checks of the reminder's alert.
</value>
</member>
<member name="P:DevExpress.XtraScheduler.SchedulerStorageBase.RemindersEnabled">
<summary>
<para>Gets whether the reminders are enabled.
</para>
</summary>
<value><b>true</b> if the reminders are enabled; otherwise, <b>false</b>.
</value>
</member>
<member name="E:DevExpress.XtraScheduler.SchedulerStorageBase.ResourceChanged">
<summary>
<para>Fires when the resource's properties are changed.
</para>
</summary>
</member>
<member name="E:DevExpress.XtraScheduler.SchedulerStorageBase.ResourceChanging">
<summary>
<para>Fires when a resource's property is about to be changed.
</para>
</summary>
</member>
<member name="E:DevExpress.XtraScheduler.SchedulerStorageBase.ResourceCollectionAutoReloading">
<summary>
<para>Occurs when the data source which contains resources is modified and the automatic reloading of resources is enabled.
</para>
</summary>
</member>
<member name="E:DevExpress.XtraScheduler.SchedulerStorageBase.ResourceCollectionCleared">
<summary>
<para>Fires after the resource collection has been cleared.
</para>
</summary>
</member>
<member name="E:DevExpress.XtraScheduler.SchedulerStorageBase.ResourceCollectionLoaded">
<summary>
<para>Fires after resources have been loaded into the Scheduler storage.
</para>
</summary>
</member>
<member name="E:DevExpress.XtraScheduler.SchedulerStorageBase.ResourceDeleted">
<summary>
<para>Fires after a scheduler's resource has been deleted. Use the <see cref="E:DevExpress.XtraScheduler.SchedulerStorageBase.ResourcesDeleted"/> instead.
</para>
</summary>
</member>
<member name="E:DevExpress.XtraScheduler.SchedulerStorageBase.ResourceDeleting">
<summary>
<para>Allows the deletion of a resource to be cancelled.
</para>
</summary>
</member>
<member name="E:DevExpress.XtraScheduler.SchedulerStorageBase.ResourceInserted">
<summary>
<para>Fires after a resource appointment has been added to the collection. Use the <see cref="E:DevExpress.XtraScheduler.SchedulerStorageBase.ResourcesInserted"/> instead.
</para>
</summary>
</member>
<member name="E:DevExpress.XtraScheduler.SchedulerStorageBase.ResourceInserting">
<summary>
<para>Allows you to cancel the addition of a resource.
</para>
</summary>
</member>
<member name="E:DevExpress.XtraScheduler.SchedulerStorageBase.ResourcesChanged">
<summary>
<para>Occurs when a scheduler's resource in a collection is changed.
</para>
</summary>
</member>
<member name="E:DevExpress.XtraScheduler.SchedulerStorageBase.ResourcesDeleted">
<summary>
<para>Occurs after a scheduler's resource(s) is deleted.
</para>
</summary>
</member>
<member name="P:DevExpress.XtraScheduler.SchedulerStorageBase.ResourceSharing">
<summary>
<para>Gets or sets a value indicating whether an appointment could be shared between multiple resources.
</para>
</summary>
<value><b>true</b> if the resource sharing is enabled; otherwise, <b>false</b>.
</value>
</member>
<member name="E:DevExpress.XtraScheduler.SchedulerStorageBase.ResourcesInserted">
<summary>
<para>Occurs when new resources are inserted into the scheduler storage.
</para>
</summary>
</member>
<member name="M:DevExpress.XtraScheduler.SchedulerStorageBase.SetAppointmentDependencyFactory(DevExpress.XtraScheduler.Native.IAppointmentDependencyFactory)">
<summary>
<para>Specifies the appointment dependency factory for use by the SchedulerStorage.
</para>
</summary>
<param name="dependencyFactory">
An object implementing the IAppointmentDependencyFactory interface which specifies the new appointment dependency factory for the scheduler storage.
</param>
</member>
<member name="M:DevExpress.XtraScheduler.SchedulerStorageBase.SetAppointmentFactory(DevExpress.XtraScheduler.IAppointmentFactory)">
<summary>
<para>Assigns the specified appointment factory to the <see cref="T:DevExpress.XtraScheduler.SchedulerStorageBase"/>.
</para>
</summary>
<param name="appointmentFactory">
An object implementing the <see cref="T:DevExpress.XtraScheduler.IAppointmentFactory"/> interface which specifies the new appointment factory for the scheduler storage.
</param>
</member>
<member name="M:DevExpress.XtraScheduler.SchedulerStorageBase.SetObjectValue(DevExpress.XtraScheduler.PersistentObject,System.String,System.Object)">
<summary>
<para>Assigns the specified value to a field in the data row that contains information about the specified persistent object.
</para>
</summary>
<param name="obj">
A <see cref="T:DevExpress.XtraScheduler.PersistentObject"/> class descendant which is the persistent object (appointment or resource).
</param>
<param name="columnName">
A <see cref="T:System.String"/> value which specifies the name of the required data field.
</param>
<param name="val">
A <see cref="T:System.Object"/> which specifies the required data field's value.
</param>
</member>
<member name="M:DevExpress.XtraScheduler.SchedulerStorageBase.SetResourceFactory(DevExpress.XtraScheduler.IResourceFactory)">
<summary>
<para>Assigns the specified resource factory to the SchedulerStorageBase.
</para>
</summary>
<param name="resourceFactory">
An object, implementing the <b>IResourceFactory</b> interface, which specifies the new resource factory for the storage.
</param>
</member>
<member name="P:DevExpress.XtraScheduler.SchedulerStorageBase.SupportsRecurrence">
<summary>
<para>Gets whether the information on appointment recurrence is obtained from a data source.
</para>
</summary>
<value><b>true</b> if the information on appointment recurrence is obtained from a data source; otherwise, <b>false</b>.
</value>
</member>
<member name="P:DevExpress.XtraScheduler.SchedulerStorageBase.SupportsReminders">
<summary>
<para>Gets whether the information on appointment reminders is obtained from a data source.
</para>
</summary>
<value><b>true</b> if the information on appointment reminders is obtained from a data source; otherwise, <b>false</b>.
</value>
</member>
<member name="M:DevExpress.XtraScheduler.SchedulerStorageBase.SynchronizeOutlookWithStorage(System.String)">
<summary>
<para>Updates MS Outlook's Calendar entries with appointments from the Scheduler storage.
</para>
</summary>
<param name="outlookEntryIdFieldName">
A <see cref="T:System.String"/> that is the name of the data field which contains the Outlook Entry ID value.
</param>
</member>
<member name="M:DevExpress.XtraScheduler.SchedulerStorageBase.SynchronizeStorageWithOutlook(System.String)">
<summary>
<para>Updates Scheduler appointments with MS Outlook's Calendar entries.
</para>
</summary>
<param name="outlookEntryIdFieldName">
A <see cref="T:System.String"/> that is the name of the data field which contains the Outlook Entry ID value.
</param>
</member>
<member name="M:DevExpress.XtraScheduler.SchedulerStorageBase.TriggerAlerts">
<summary>
<para>Invokes reminder alerts for the current time.
</para>
</summary>
</member>
<member name="P:DevExpress.XtraScheduler.SchedulerStorageBase.UnboundMode">
<summary>
<para>Gets a value indicating if the scheduler storage is bound to data.
</para>
</summary>
<value><b>true</b> if the storage isn't bound to data; otherwise, <b>false</b>.
</value>
</member>
<member name="T:DevExpress.XtraScheduler.NavigationButtonVisibility">
<summary>
<para>Lists the modes that define the conditions for the Navigation Buttons being displayed.
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.NavigationButtonVisibility.Always">
<summary>
<para>Navigation buttons are always visible.
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.NavigationButtonVisibility.Auto">
<summary>
<para>Navigation buttons are visible if there are no appointments displayed within the current view area.
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.NavigationButtonVisibility.Never">
<summary>
<para>Navigation buttons are always hidden.
</para>
</summary>
</member>
<member name="T:DevExpress.XtraScheduler.Localization.SchedulerLocalizer">
<summary>
<para>Provides localized strings for the Scheduler user interface elements.
</para>
</summary>
</member>
<member name="M:DevExpress.XtraScheduler.Localization.SchedulerLocalizer.#ctor">
<summary>
<para>Initializes a new instance of the SchedulerLocalizer class with default settings.
</para>
</summary>
</member>
<member name="P:DevExpress.XtraScheduler.Localization.SchedulerLocalizer.Active">
<summary>
<para>Gets or sets a localizer object providing localization of the user interface at runtime.
</para>
</summary>
<value>An <see cref="T:DevExpress.Utils.Localization.XtraLocalizer`1"/> descendant, used to localize the user interface at runtime.
</value>
</member>
<member name="M:DevExpress.XtraScheduler.Localization.SchedulerLocalizer.CreateDefaultLocalizer">
<summary>
<para>Returns a localizer object, which provides resources based on the thread's language and regional settings (culture).
</para>
</summary>
<returns>An <see cref="T:DevExpress.Utils.Localization.XtraLocalizer`1"/> object representing resources based on the thread's culture.
</returns>
</member>
<member name="M:DevExpress.XtraScheduler.Localization.SchedulerLocalizer.CreateResXLocalizer">
<summary>
<para>Returns a localizer object which provides resources based on the thread's language and regional settings (culture).
</para>
</summary>
<returns>A <see cref="T:DevExpress.Utils.Localization.XtraLocalizer`1"/> object which provides resources based on the thread's culture.
</returns>
</member>
<member name="M:DevExpress.XtraScheduler.Localization.SchedulerLocalizer.GetString(DevExpress.XtraScheduler.Localization.SchedulerStringId)">
<summary>
<para>Returns a localized string for the specified string identifier.
</para>
</summary>
<param name="id">
A <see cref="T:DevExpress.XtraScheduler.Localization.SchedulerStringId"/> enumeration value identifying the string to localize.
</param>
<returns>A <a href="ms-xhelp:///?Id=T%3aSystem.String">String</a> corresponding to the specified identifier.
</returns>
</member>
<member name="T:DevExpress.XtraScheduler.Exchange.AppointmentSynchronizer">
<summary>
<para>Serves as the base class for classes that provide functionality for synchronizing the appointments contained in the XtraScheduler storage and another scheduling application.
</para>
</summary>
</member>
<member name="E:DevExpress.XtraScheduler.Exchange.AppointmentSynchronizer.AppointmentSynchronized">
<summary>
<para>Fires after the synchronization of appointments is complete.
</para>
</summary>
</member>
<member name="E:DevExpress.XtraScheduler.Exchange.AppointmentSynchronizer.AppointmentSynchronizing">
<summary>
<para>Allows you to cancel the synchronization process for an appointment.
</para>
</summary>
</member>
<member name="P:DevExpress.XtraScheduler.Exchange.AppointmentSynchronizer.ForeignIdFieldName">
<summary>
<para>Gets or sets the field name that contains the Foreign ID in the third-party scheduling application (MS Outook) database with which appointment data is exchanged.
</para>
</summary>
<value>A <see cref="T:System.String"/> representing the name of the field containing the Foreign Id.
</value>
</member>
<member name="M:DevExpress.XtraScheduler.Exchange.AppointmentSynchronizer.Synchronize">
<summary>
<para>Executes the appointment synchronization process.
</para>
</summary>
</member>
<member name="T:DevExpress.XtraScheduler.WeekDaysWorkDay">
<summary>
<para>Represents a class that defines which days of the week are the work days.
</para>
</summary>
</member>
<member name="M:DevExpress.XtraScheduler.WeekDaysWorkDay.#ctor(DevExpress.XtraScheduler.WeekDays)">
<summary>
<para>Initializes a new instance of the WeekDaysWorkDay class for the specified weekday or a group of days.
</para>
</summary>
<param name="weekDays">
A <see cref="T:DevExpress.XtraScheduler.WeekDays"/> enumeration member that defines a day or a group of days.
</param>
</member>
<member name="M:DevExpress.XtraScheduler.WeekDaysWorkDay.CheckDate(System.DateTime)">
<summary>
<para>Identifies the date type - whether it is a working day or a holiday.
</para>
</summary>
<param name="date">
A <see cref="T:System.DateTime"/> value representing the date whose type has to be identified.
</param>
<returns>A <see cref="T:DevExpress.Schedule.DateCheckResult"/> enumeration value.
</returns>
</member>
<member name="M:DevExpress.XtraScheduler.WeekDaysWorkDay.Clone">
<summary>
<para>Creates a copy of the current WeekDaysWorkDay object.
</para>
</summary>
<returns>A WeekDaysWorkDay object which is a copy of the current object.
</returns>
</member>
<member name="M:DevExpress.XtraScheduler.WeekDaysWorkDay.Equals(System.Object)">
<summary>
<para>Determines whether the specified object is equal to the current WeekDaysWorkDay instance.
</para>
</summary>
<param name="obj">
The object to compare with the current object.
</param>
<returns><b>true</b> if the specified object is equal to the current WeekDaysWorkDay instance; otherwise <b>false</b>.
</returns>
</member>
<member name="M:DevExpress.XtraScheduler.WeekDaysWorkDay.GetHashCode">
<summary>
<para>Gets the hash code (a number) that corresponds to the value of the current WeekDaysWorkDay object.
</para>
</summary>
<returns>An integer value representing the hash code for the current object.
</returns>
</member>
<member name="M:DevExpress.XtraScheduler.WeekDaysWorkDay.IsWorkDay(System.DateTime)">
<summary>
<para>Determines whether the specified date is treated as a working day.
</para>
</summary>
<param name="date">
A <see cref="T:System.DateTime"/> value representing the date to be identified.
</param>
<returns><b>true</b> if the specified day is a working day; otherwise, <b>false</b>.
</returns>
</member>
<member name="P:DevExpress.XtraScheduler.WeekDaysWorkDay.Type">
<summary>
<para>Returns the type of the day that is a working day.
</para>
</summary>
<value>A <see cref="F:DevExpress.Schedule.WorkDayType.WeekDay"/> enumeration member.
</value>
</member>
<member name="P:DevExpress.XtraScheduler.WeekDaysWorkDay.WeekDays">
<summary>
<para>Gets a day or a group of days for the WeekDaysWorkDay object.
</para>
</summary>
<value>A <see cref="T:DevExpress.XtraScheduler.WeekDays"/> enumeration member representing a day or a group of days.
</value>
</member>
<member name="T:DevExpress.XtraScheduler.WorkDaysCollection">
<summary>
<para>Represents a collection of dates, for which the information regarding a working activity is known.
</para>
</summary>
</member>
<member name="M:DevExpress.XtraScheduler.WorkDaysCollection.#ctor">
<summary>
<para>Initializes a new instance of the WorkDaysCollection class with default settings.
</para>
</summary>
</member>
<member name="M:DevExpress.XtraScheduler.WorkDaysCollection.Add(DevExpress.XtraScheduler.WeekDays)">
<summary>
<para>Adds an item to the <b>WorkDaysCollection</b> if the collection does not contain the specified item.
</para>
</summary>
<param name="weekDays">
A <see cref="T:DevExpress.XtraScheduler.WeekDays"/> enumeration value.
</param>
<returns>An integer, representing the position into which the new element was inserted.
</returns>
</member>
<member name="M:DevExpress.XtraScheduler.WorkDaysCollection.AddHoliday(System.DateTime,System.String)">
<summary>
<para>Creates and adds a <see cref="T:DevExpress.Schedule.Holiday"/> class instance to the <b>WorkDaysCollection</b> if the collection does not contain the specified item.
</para>
</summary>
<param name="date">
A <see cref="T:System.DateTime"/> value, representing the date of the holiday.
</param>
<param name="displayName">
A <see cref="T:System.String"/>, representing a name of the holiday to display.
</param>
<returns>An integer, representing the position into which the new element was inserted.
</returns>
</member>
<member name="M:DevExpress.XtraScheduler.WorkDaysCollection.Assign(DevExpress.XtraScheduler.WorkDaysCollection)">
<summary>
<para>Copies all the settings from the WorkDaysCollection object passed as a parameter.
</para>
</summary>
<param name="source">
An WorkDaysCollection object whose settings are assigned to the current object. If <b>null</b> (<b>Nothing</b> in Visual Basic), then a <see cref="T:System.ArgumentNullException"/> will be thrown.
</param>
</member>
<member name="M:DevExpress.XtraScheduler.WorkDaysCollection.Clone">
<summary>
<para>Creates a copy of the current WorkDaysCollection object.
</para>
</summary>
<returns>A WorkDaysCollection object which is a copy of the current object.
</returns>
</member>
<member name="M:DevExpress.XtraScheduler.WorkDaysCollection.GetWeekDays">
<summary>
<para>Returns a <see cref="T:DevExpress.XtraScheduler.WeekDays"/> enumeration, corresponding to work days in the collection.
</para>
</summary>
<returns>A <see cref="T:DevExpress.XtraScheduler.WeekDays"/> enumeration.
</returns>
</member>
<member name="M:DevExpress.XtraScheduler.WorkDaysCollection.IsWorkDay(System.DateTime)">
<summary>
<para>Determines whether the specified date is treated as a work day.
</para>
</summary>
<param name="date">
A <see cref="T:System.DateTime"/> value representing the date to be identified.
</param>
<returns><b>true</b> if the specified date is associated with a work day; otherwise, <b>false</b>.
</returns>
</member>
<member name="T:DevExpress.XtraScheduler.AppointmentContinueArrowDisplayType">
<summary>
<para>Lists the values used to specify the type of sign to indicate that the scheduled time continues beyond the visible interval of dates.
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.AppointmentContinueArrowDisplayType.Arrow">
<summary>
<para>Displays an arrow pointing to the part of the appointment that resides out of visible interval of dates.
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.AppointmentContinueArrowDisplayType.ArrowWithText">
<summary>
<para>Displays an arrow and the text pointing out the date to which the appointment extends.
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.AppointmentContinueArrowDisplayType.Auto">
<summary>
<para>Displays an arrow pointing to the appointment extension. The text is displayed only when it occupies less than half of the visible time cell space.
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.AppointmentContinueArrowDisplayType.Never">
<summary>
<para>No indication is displayed that the appointment extends out of the visible date range
</para>
</summary>
</member>
<member name="T:DevExpress.XtraScheduler.Native.CustomField">
<summary>
<para>Represents a custom field that may contain additional arbitrary information for an appointment or resource.
</para>
</summary>
</member>
<member name="M:DevExpress.XtraScheduler.Native.CustomField.#ctor(System.String,System.Object)">
<summary>
<para>Initializes a new instance of the CustomField class with default settings.
</para>
</summary>
<param name="name">
A string, that represents a name of the custom field used to identify it or bind to a data source.
</param>
<param name="val">
A <see cref="T:System.Object"/> that represents the additional information the custom field contains.
</param>
</member>
<member name="P:DevExpress.XtraScheduler.Native.CustomField.Name">
<summary>
<para>Gets or sets the name of a custom field.
</para>
</summary>
<value>A string that represents a name of a custom field.
</value>
</member>
<member name="P:DevExpress.XtraScheduler.Native.CustomField.Value">
<summary>
<para>Gets or sets the value of a custom field.
</para>
</summary>
<value>A <see cref="T:System.Object"/> value that represents the information contained in a custom field.
</value>
</member>
<member name="T:DevExpress.XtraScheduler.QueryDeleteAppointmentResult">
<summary>
<para>Lists the keys specifying which appointment occurrences should be deleted.
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.QueryDeleteAppointmentResult.Cancel">
<summary>
<para>No occurrences of the recurring appointment should be deleted.
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.QueryDeleteAppointmentResult.Occurrence">
<summary>
<para>Only the current occurrence of the recurrence appointment should be deleted.
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.QueryDeleteAppointmentResult.Series">
<summary>
<para>All occurrences of the recurring appointment should be deleted.
</para>
</summary>
</member>
<member name="T:DevExpress.XtraScheduler.AllowDisplayAppointmentForm">
<summary>
<para>Lists the values used to specify whether the <b>Edit Appointment</b> form can be displayed or not.
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.AllowDisplayAppointmentForm.Always">
<summary>
<para>The Edit Appointment form can be displayed both for editable and read-only appointments. Note that when this form is shown for read-only appointments, all its editors are disabled.
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.AllowDisplayAppointmentForm.Auto">
<summary>
<para>The Edit Appointment form can be displayed only for editable appointments.
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.AllowDisplayAppointmentForm.Never">
<summary>
<para>The Edit Appointment form can not be displayed for any appointments.
</para>
</summary>
</member>
<member name="T:DevExpress.XtraScheduler.ReminderBaseEventArgs">
<summary>
<para>Serves as the base class for classes which provide data for certain reminder events.
</para>
</summary>
</member>
<member name="M:DevExpress.XtraScheduler.ReminderBaseEventArgs.#ctor(DevExpress.XtraScheduler.ReminderBaseAlertNotificationCollection)">
<summary>
<para>Initializes a new instance of the ReminderBaseEventArgs class with the specified settings.
</para>
</summary>
<param name="alertNotifications">
A <see cref="T:DevExpress.XtraScheduler.ReminderBaseAlertNotificationCollection"/> object which represents the reminder's alert notifications. This value is assigned to the <see cref="P:DevExpress.XtraScheduler.ReminderBaseEventArgs.AlertNotifications"/> property.
</param>
</member>
<member name="P:DevExpress.XtraScheduler.ReminderBaseEventArgs.AlertNotifications">
<summary>
<para>Gets any reminders currently triggered.
</para>
</summary>
<value>A <see cref="T:DevExpress.XtraScheduler.ReminderBaseAlertNotificationCollection"/> object which holds a collection of notifications.
</value>
</member>
<member name="T:DevExpress.XtraScheduler.ReminderBaseAlertNotificationCollection">
<summary>
<para>Represents a collection of alert notifications.
</para>
</summary>
</member>
<member name="M:DevExpress.XtraScheduler.ReminderBaseAlertNotificationCollection.#ctor">
<summary>
<para>Initializes a new instance of the ReminderBaseAlertNotificationCollection class with default settings.
</para>
</summary>
</member>
<member name="M:DevExpress.XtraScheduler.ReminderBaseAlertNotificationCollection.Add(DevExpress.XtraScheduler.ReminderBaseAlertNotification)">
<summary>
<para>Appends the specified <see cref="T:DevExpress.XtraScheduler.ReminderBaseAlertNotification"/> object to the current collection.
</para>
</summary>
<param name="obj">
A <see cref="T:DevExpress.XtraScheduler.ReminderBaseAlertNotification"/> object to append to the collection.
</param>
<returns>An integer value indicating the position into which the new element was inserted.
</returns>
</member>
<member name="P:DevExpress.XtraScheduler.ReminderBaseAlertNotificationCollection.Item(System.Int32)">
<summary>
<para>Provides indexed access to individual items in the collection.
</para>
</summary>
<param name="index">
A zero-based integer specifying the desired item's position within the collection. If it's negative or exceeds the last available index, an exception is raised.
</param>
<value>A <see cref="T:DevExpress.XtraScheduler.ReminderBaseAlertNotification"/> object which represents the alert notification located at the specified position.
</value>
</member>
<member name="T:DevExpress.XtraScheduler.ReminderBaseAlertNotification">
<summary>
<para>Represents a reminder alert notification.
</para>
</summary>
</member>
<member name="M:DevExpress.XtraScheduler.ReminderBaseAlertNotification.#ctor(DevExpress.XtraScheduler.ReminderBase)">
<summary>
<para>Initializes a new instance of the ReminderBaseAlertNotification class with the specified reminder.
</para>
</summary>
<param name="reminder">
A <see cref="T:DevExpress.XtraScheduler.Reminder"/> object that specifies the reminder of the alert notification. This value is assigned to the <see cref="P:DevExpress.XtraScheduler.ReminderBaseAlertNotification.Reminder"/> property.
</param>
</member>
<member name="P:DevExpress.XtraScheduler.ReminderBaseAlertNotification.Handled">
<summary>
<para>Gets or sets whether the reminder is handled and therefore no default processing is required.
</para>
</summary>
<value><b>true</b> if no default processing is required; otherwise, <b>false</b>.
</value>
</member>
<member name="P:DevExpress.XtraScheduler.ReminderBaseAlertNotification.Ignore">
<summary>
<para>Gets or sets whether an alert is invoked for a particular reminder.
</para>
</summary>
<value><b>true</b> if the reminder doesn't generate an alert notification; otherwise, <b>false</b>.
</value>
</member>
<member name="P:DevExpress.XtraScheduler.ReminderBaseAlertNotification.Reminder">
<summary>
<para>Gets the reminder of the alert notification.
</para>
</summary>
<value>A <see cref="T:DevExpress.XtraScheduler.ReminderBase"/> object that specifies the reminder of the alert notification.
</value>
</member>
<member name="T:DevExpress.XtraScheduler.AppointmentCancelEventArgs">
<summary>
<para>Serves as the base class for classes which provide data for certain appointment events with the ability to cancel the operation performed.
</para>
</summary>
</member>
<member name="M:DevExpress.XtraScheduler.AppointmentCancelEventArgs.#ctor(DevExpress.XtraScheduler.Appointment)">
<summary>
<para>Initializes a new instance of the AppointmentCancelEventArgs class with the specified appointment.
</para>
</summary>
<param name="apt">
An <see cref="T:DevExpress.XtraScheduler.Appointment"/> value which represents the event's appointment. This value is assigned to the <see cref="P:DevExpress.XtraScheduler.AppointmentEventArgs.Appointment"/> property.
</param>
</member>
<member name="M:DevExpress.XtraScheduler.AppointmentCancelEventArgs.#ctor">
<summary>
<para>Initializes a new instance of the AppointmentCancelEventArgs class with the default settings.
</para>
</summary>
</member>
<member name="P:DevExpress.XtraScheduler.AppointmentCancelEventArgs.Cancel">
<summary>
<para>Gets or sets whether the operation performed on the processed event should be cancelled.
</para>
</summary>
<value><b>true</b> to cancel the operation performed on the event; otherwise, <b>false</b>.
</value>
</member>
<member name="T:DevExpress.XtraScheduler.TimeScaleFixedInterval">
<summary>
<para>Serves as a base for the classes for which <see cref="P:DevExpress.XtraScheduler.TimeScaleFixedInterval.Value"/> is a fixed time interval.
</para>
</summary>
</member>
<member name="M:DevExpress.XtraScheduler.TimeScaleFixedInterval.#ctor">
<summary>
<para>Initializes a new instance of the TimeScaleFixedInterval class with the default settings.
</para>
</summary>
</member>
<member name="M:DevExpress.XtraScheduler.TimeScaleFixedInterval.#ctor(System.TimeSpan)">
<summary>
<para>Initializes a new instance of the TimeScaleFixedInterval class with the specified scale value.
</para>
</summary>
<param name="scaleValue">
A <see cref="T:System.TimeSpan"/> value which specifies the scale value of the fixed interval. This value is assigned to the <see cref="P:DevExpress.XtraScheduler.TimeScaleFixedInterval.Value"/> property.
</param>
</member>
<member name="M:DevExpress.XtraScheduler.TimeScaleFixedInterval.Floor(System.DateTime)">
<summary>
<para>Calculates the largest datetime value that is less or equal to the argument and represents an integer number of specified time intervals.
</para>
</summary>
<param name="date">
A <see cref="T:System.DateTime"/> value.
</param>
<returns>A <see cref="T:System.DateTime"/> value representing an argument rounded to specified time intervals.
</returns>
</member>
<member name="M:DevExpress.XtraScheduler.TimeScaleFixedInterval.GetNextDate(System.DateTime)">
<summary>
<para>Adds a fixed scale time interval to the argument value.
</para>
</summary>
<param name="date">
A <see cref="T:System.DateTime"/> value.
</param>
<returns>A <see cref="T:System.DateTime"/> value.
</returns>
</member>
<member name="P:DevExpress.XtraScheduler.TimeScaleFixedInterval.Value">
<summary>
<para>Gets or sets the value of the scale unit - a fixed time interval.
</para>
</summary>
<value>A <see cref="T:System.TimeSpan"/> value representing the time interval of a scale unit.
</value>
</member>
<member name="T:DevExpress.XtraScheduler.SelectionBarOptions">
<summary>
<para>Provides options which define how the selection bar in the Timeline View is painted.
</para>
</summary>
</member>
<member name="M:DevExpress.XtraScheduler.SelectionBarOptions.#ctor">
<summary>
<para>Initializes a new instance of the SelectionBarOptions class with the default settings.
</para>
</summary>
</member>
<member name="P:DevExpress.XtraScheduler.SelectionBarOptions.Height">
<summary>
<para>Gets or sets the height of the Selection Bar in pixels.
</para>
</summary>
<value>An integer value.
</value>
</member>
<member name="M:DevExpress.XtraScheduler.SelectionBarOptions.ToString">
<summary>
<para>Returns the textual representation of selection bar options.
</para>
</summary>
<returns>A <see cref="T:System.String"/> value which is the textual representation of selection bar options.
</returns>
</member>
<member name="P:DevExpress.XtraScheduler.SelectionBarOptions.Visible">
<summary>
<para>Gets or sets a value indicating whether the Selection Bar is visible.
</para>
</summary>
<value><b>true</b> if the selection bar is visible; otherwise, <b>false</b>.
</value>
</member>
<member name="T:DevExpress.XtraScheduler.SchedulerColorSchemaCollection">
<summary>
<para>Represents a collection of color schemas.
</para>
</summary>
</member>
<member name="M:DevExpress.XtraScheduler.SchedulerColorSchemaCollection.#ctor">
<summary>
<para>Initializes a new instance of the SchedulerColorSchemaCollection class with the default settings.
</para>
</summary>
</member>
<member name="M:DevExpress.XtraScheduler.SchedulerColorSchemaCollection.Assign(DevExpress.Utils.IAssignableCollection)">
<summary>
<para>Copies all the elements from the SchedulerColorSchemaCollection object passed as the parameter.
</para>
</summary>
<param name="sourceCollection">
A collection whose elements are copied to the current object. If <b>null</b> (<b>Nothing</b> in Visual Basic), then a <see cref="T:System.ArgumentNullException"/> will be thrown.
</param>
</member>
<member name="M:DevExpress.XtraScheduler.SchedulerColorSchemaCollection.GetSchema(System.Int32)">
<summary>
<para>Provides access to an element of the <b>SchedulerColorSchemaCollection</b> by its index.
</para>
</summary>
<param name="index">
An integer specifying the number of a color schema.
</param>
<returns>A <see cref="T:DevExpress.XtraScheduler.SchedulerColorSchema"/> element selected by the index.
</returns>
</member>
<member name="M:DevExpress.XtraScheduler.SchedulerColorSchemaCollection.LoadDefaults">
<summary>
<para>Removes all elements from a collection, creates default schemas and appends them to a collection.
</para>
</summary>
</member>
<member name="T:DevExpress.XtraScheduler.SchedulerColorSchema">
<summary>
<para>Represents a color schema which contains colors for a scheduler's resources.
</para>
</summary>
</member>
<member name="M:DevExpress.XtraScheduler.SchedulerColorSchema.#ctor(System.Drawing.Color)">
<summary>
<para>Initializes a new instance of the SchedulerColorSchema class and assigns values to its members using the parameter as a color base.
</para>
</summary>
<param name="baseColor">
A <see cref="T:System.Drawing.Color"/> value specifying the color to be used for calculating other colors of the color schema.
</param>
</member>
<member name="M:DevExpress.XtraScheduler.SchedulerColorSchema.#ctor">
<summary>
<para>Initializes a new instance of the SchedulerColorSchema class with the default settings.
</para>
</summary>
</member>
<member name="P:DevExpress.XtraScheduler.SchedulerColorSchema.BaseColor">
<summary>
<para>Gets or sets the schema's base color, whose variations, according to an internal algorithm, are used as other color components of the schema.
</para>
</summary>
<value>A <see cref="T:System.Drawing.Color"/> value.
</value>
</member>
<member name="M:DevExpress.XtraScheduler.SchedulerColorSchema.BeginUpdate">
<summary>
<para>Locks the SchedulerColorSchema object by disallowing visual updates until the <b>EndUpdate</b> or <b>CancelUpdate</b> method is called.
</para>
</summary>
</member>
<member name="M:DevExpress.XtraScheduler.SchedulerColorSchema.CancelUpdate">
<summary>
<para>Unlocks the SchedulerColorSchema object after it has been locked by the <b>BeginUpdate</b> method, without causing an immediate visual update.
</para>
</summary>
</member>
<member name="P:DevExpress.XtraScheduler.SchedulerColorSchema.Cell">
<summary>
<para>Gets or sets the color value of the cell's color schema component.
</para>
</summary>
<value>A <see cref="T:System.Drawing.Color"/> value.
</value>
</member>
<member name="P:DevExpress.XtraScheduler.SchedulerColorSchema.CellBorder">
<summary>
<para>Gets or sets the color value of the normal cell border's color.
</para>
</summary>
<value>A <see cref="T:System.Drawing.Color"/> value.
</value>
</member>
<member name="P:DevExpress.XtraScheduler.SchedulerColorSchema.CellBorderDark">
<summary>
<para>Gets or sets the color value of the color schema component.
</para>
</summary>
<value>A <see cref="T:System.Drawing.Color"/> value.
</value>
</member>
<member name="P:DevExpress.XtraScheduler.SchedulerColorSchema.CellLight">
<summary>
<para>Gets or sets the color value of the color schema component.
</para>
</summary>
<value>A <see cref="T:System.Drawing.Color"/> value.
</value>
</member>
<member name="P:DevExpress.XtraScheduler.SchedulerColorSchema.CellLightBorder">
<summary>
<para>Gets or sets the color value of the color schema component.
</para>
</summary>
<value>A <see cref="T:System.Drawing.Color"/> value.
</value>
</member>
<member name="P:DevExpress.XtraScheduler.SchedulerColorSchema.CellLightBorderDark">
<summary>
<para>Gets or sets the color value of the color schema component.
</para>
</summary>
<value>A <see cref="T:System.Drawing.Color"/> value.
</value>
</member>
<member name="E:DevExpress.XtraScheduler.SchedulerColorSchema.Changed">
<summary>
<para>Occurs when the color schema is changed.
</para>
</summary>
</member>
<member name="M:DevExpress.XtraScheduler.SchedulerColorSchema.Clone">
<summary>
<para>Creates a copy of the current SchedulerColorSchema object.
</para>
</summary>
<returns>A SchedulerColorSchema object which is a copy of the current object.
</returns>
</member>
<member name="P:DevExpress.XtraScheduler.SchedulerColorSchema.DefaultSchema1">
<summary>
<para>Gets the clone of the predefined schema No.1 which is used as a default color schema for the first resource.
</para>
</summary>
<value>A <see cref="T:DevExpress.XtraScheduler.SchedulerColorSchema"/> object which contains colors for a resource.
</value>
</member>
<member name="P:DevExpress.XtraScheduler.SchedulerColorSchema.DefaultSchema10">
<summary>
<para>Gets the clone of the predefined schema No.10 which is used as a default color schema for the tenth resource.
</para>
</summary>
<value>A <see cref="T:DevExpress.XtraScheduler.SchedulerColorSchema"/> object which contains colors for a resource.
</value>
</member>
<member name="P:DevExpress.XtraScheduler.SchedulerColorSchema.DefaultSchema11">
<summary>
<para>Gets the clone of the predefined schema No.11 which is used as a default color schema for the eleventh resource.
</para>
</summary>
<value>A <see cref="T:DevExpress.XtraScheduler.SchedulerColorSchema"/> object which contains colors for a resource.
</value>
</member>
<member name="P:DevExpress.XtraScheduler.SchedulerColorSchema.DefaultSchema12">
<summary>
<para>Gets the clone of the predefined schema No.12 which is used as a default color schema for the twelvth resource.
</para>
</summary>
<value>A <see cref="T:DevExpress.XtraScheduler.SchedulerColorSchema"/> object which contains colors for a resource.
</value>
</member>
<member name="P:DevExpress.XtraScheduler.SchedulerColorSchema.DefaultSchema2">
<summary>
<para>Gets the clone of the predefined schema No.2 which is used as a default color schema for the second resource.
</para>
</summary>
<value>A <see cref="T:DevExpress.XtraScheduler.SchedulerColorSchema"/> object which contains colors for a resource.
</value>
</member>
<member name="P:DevExpress.XtraScheduler.SchedulerColorSchema.DefaultSchema3">
<summary>
<para>Gets the clone of the predefined schema No.3 which is used as a default color schema for the third resource.
</para>
</summary>
<value>A <see cref="T:DevExpress.XtraScheduler.SchedulerColorSchema"/> object which contains colors for a resource.
</value>
</member>
<member name="P:DevExpress.XtraScheduler.SchedulerColorSchema.DefaultSchema4">
<summary>
<para>Gets the clone of the predefined schema No.4 which is used as a default color schema for the fourth resource.
</para>
</summary>
<value>A <see cref="T:DevExpress.XtraScheduler.SchedulerColorSchema"/> object which contains colors for a resource.
</value>
</member>
<member name="P:DevExpress.XtraScheduler.SchedulerColorSchema.DefaultSchema5">
<summary>
<para>Gets the clone of the predefined schema No.5 which is used as a default color schema for the fifth resource.
</para>
</summary>
<value>A <see cref="T:DevExpress.XtraScheduler.SchedulerColorSchema"/> object which contains colors for a resource.
</value>
</member>
<member name="P:DevExpress.XtraScheduler.SchedulerColorSchema.DefaultSchema6">
<summary>
<para>Gets the clone of the predefined schema No.6 which is used as a default color schema for the sixth resource.
</para>
</summary>
<value>A <see cref="T:DevExpress.XtraScheduler.SchedulerColorSchema"/> object which contains colors for a resource.
</value>
</member>
<member name="P:DevExpress.XtraScheduler.SchedulerColorSchema.DefaultSchema7">
<summary>
<para>Gets the clone of the predefined schema No.7 which is used as a default color schema for the seventh resource.
</para>
</summary>
<value>A <see cref="T:DevExpress.XtraScheduler.SchedulerColorSchema"/> object which contains colors for a resource.
</value>
</member>
<member name="P:DevExpress.XtraScheduler.SchedulerColorSchema.DefaultSchema8">
<summary>
<para>Gets the clone of the predefined schema No.8 which is used as a default color schema for the eighth resource.
</para>
</summary>
<value>A <see cref="T:DevExpress.XtraScheduler.SchedulerColorSchema"/> object which contains colors for a resource.
</value>
</member>
<member name="P:DevExpress.XtraScheduler.SchedulerColorSchema.DefaultSchema9">
<summary>
<para>Gets the clone of the predefined schema No.9 which is used as a default color schema for the ninth resource.
</para>
</summary>
<value>A <see cref="T:DevExpress.XtraScheduler.SchedulerColorSchema"/> object which contains colors for a resource.
</value>
</member>
<member name="M:DevExpress.XtraScheduler.SchedulerColorSchema.EndUpdate">
<summary>
<para>Unlocks the SchedulerColorSchema object after a call to the <b>BeginUpdate</b> method and causes an immediate visual update.
</para>
</summary>
</member>
<member name="M:DevExpress.XtraScheduler.SchedulerColorSchema.Equals(System.Object)">
<summary>
<para>Determines whether the specified object is equal to the current SchedulerColorSchema instance.
</para>
</summary>
<param name="obj">
The object to compare with the current object.
</param>
<returns><b>true</b> if the specified object is equal to the current SchedulerColorSchema instance; otherwise <b>false</b>.
</returns>
</member>
<member name="M:DevExpress.XtraScheduler.SchedulerColorSchema.GetHashCode">
<summary>
<para>Gets the hash code (a number) that corresponds to the value of the current SchedulerColorSchema object.
</para>
</summary>
<returns>An integer value representing the hash code for the current object.
</returns>
</member>
<member name="P:DevExpress.XtraScheduler.SchedulerColorSchema.IsUpdateLocked">
<summary>
<para>Notifies whether the batch update of the <b>SchedulerColorSchema</b> is complete.
</para>
</summary>
<value><b>True</b> if a color schema is being modified; otherwise <b>false</b>.
</value>
</member>
<member name="M:DevExpress.XtraScheduler.SchedulerColorSchema.ToString">
<summary>
<para>Returns the textual representation of the color schema.
</para>
</summary>
<returns>A <see cref="T:System.String"/> value which is the textual representation of the color schema.
</returns>
</member>
<member name="T:DevExpress.XtraScheduler.RecurringReminder">
<summary>
<para>Represents a reminder for a recurring appointment.
</para>
</summary>
</member>
<member name="P:DevExpress.XtraScheduler.RecurringReminder.AlertOccurrenceIndex">
<summary>
<para>Gets the index of an appointment in a recurring chain for which the reminder is invoked.
</para>
</summary>
<value>An integer, which is the occurrence's index.
</value>
</member>
<member name="T:DevExpress.XtraScheduler.TimeScaleYear">
<summary>
<para>Represents a time scale whose time cell value is equal to a single <b>year</b>.
</para>
</summary>
</member>
<member name="M:DevExpress.XtraScheduler.TimeScaleYear.#ctor">
<summary>
<para>Initializes a new instance of the TimeScaleYear class with the default settings.
</para>
</summary>
</member>
<member name="M:DevExpress.XtraScheduler.TimeScaleYear.Floor(System.DateTime)">
<summary>
<para>Calculates the largest datetime value that is less or equal to the argument and represents an integer number of years.
</para>
</summary>
<param name="date">
A <see cref="T:System.DateTime"/> value.
</param>
<returns>A <see cref="T:System.DateTime"/> value representing an argument rounded to years.
</returns>
</member>
<member name="M:DevExpress.XtraScheduler.TimeScaleYear.GetNextDate(System.DateTime)">
<summary>
<para>Adds a time interval, equivalent to one year, to the argument value.
</para>
</summary>
<param name="date">
A <see cref="T:System.DateTime"/> value.
</param>
<returns>A <see cref="T:System.DateTime"/> value.
</returns>
</member>
<member name="T:DevExpress.XtraScheduler.TimeScaleWeek">
<summary>
<para>Represents a time scale whose time cell value is equal to a single <b>week</b>.
</para>
</summary>
</member>
<member name="M:DevExpress.XtraScheduler.TimeScaleWeek.#ctor">
<summary>
<para>Initializes a new instance of the TimeScaleWeek class with the default settings.
</para>
</summary>
</member>
<member name="P:DevExpress.XtraScheduler.TimeScaleWeek.FirstDayOfWeek">
<summary>
<para>Gets or sets the day which starts the scale's week.
</para>
</summary>
<value>A <see cref="T:System.DayOfWeek"/> enumeration value specifying the first day of the week.
</value>
</member>
<member name="M:DevExpress.XtraScheduler.TimeScaleWeek.Floor(System.DateTime)">
<summary>
<para>Calculates the largest datetime value that is less or equal to the argument and represents an integer number of weeks.
</para>
</summary>
<param name="date">
A <see cref="T:System.DateTime"/> value.
</param>
<returns>A <see cref="T:System.DateTime"/> value representing an argument rounded to weeks.
</returns>
</member>
<member name="M:DevExpress.XtraScheduler.TimeScaleWeek.GetNextDate(System.DateTime)">
<summary>
<para>Adds a time interval, equivalent to one week, to the argument value.
</para>
</summary>
<param name="date">
A <see cref="T:System.DateTime"/> value.
</param>
<returns>A <see cref="T:System.DateTime"/> value.
</returns>
</member>
<member name="P:DevExpress.XtraScheduler.TimeScaleWeek.Value">
<summary>
<para>Gets the value of the scale unit - a time interval equal to a week.
</para>
</summary>
<value>A <see cref="T:System.TimeSpan"/> value representing the time interval of a scale unit.
</value>
</member>
<member name="T:DevExpress.XtraScheduler.TimeScaleQuarter">
<summary>
<para>Represents a time scale whose time cell value is equal to a <b>quarter</b> of a year.
</para>
</summary>
</member>
<member name="M:DevExpress.XtraScheduler.TimeScaleQuarter.#ctor">
<summary>
<para>Initializes a new instance of the TimeScaleQuarter class with the default settings.
</para>
</summary>
</member>
<member name="M:DevExpress.XtraScheduler.TimeScaleQuarter.Floor(System.DateTime)">
<summary>
<para>Calculates the largest datetime value that is less or equal to the argument and represents an integer number of year quarters.
</para>
</summary>
<param name="date">
A <see cref="T:System.DateTime"/> value.
</param>
<returns>A <see cref="T:System.DateTime"/> value representing an argument rounded to year quarters.
</returns>
</member>
<member name="M:DevExpress.XtraScheduler.TimeScaleQuarter.GetNextDate(System.DateTime)">
<summary>
<para>Adds a time interval, equivalent to one quarter of the year, to the argument value.
</para>
</summary>
<param name="date">
A <see cref="T:System.DateTime"/> value.
</param>
<returns>A <see cref="T:System.DateTime"/> value.
</returns>
</member>
<member name="T:DevExpress.XtraScheduler.TimeScaleMonth">
<summary>
<para>Represents a time scale whose time cell value is equal to a single <b>month</b>.
</para>
</summary>
</member>
<member name="M:DevExpress.XtraScheduler.TimeScaleMonth.#ctor">
<summary>
<para>Initializes a new instance of the TimeScaleMonth class with the default settings.
</para>
</summary>
</member>
<member name="M:DevExpress.XtraScheduler.TimeScaleMonth.Floor(System.DateTime)">
<summary>
<para>Calculates the largest datetime value that is less or equal to the argument and represents an integer number of months.
</para>
</summary>
<param name="date">
A <see cref="T:System.DateTime"/> value.
</param>
<returns>A <see cref="T:System.DateTime"/> value representing an argument rounded to months.
</returns>
</member>
<member name="M:DevExpress.XtraScheduler.TimeScaleMonth.GetNextDate(System.DateTime)">
<summary>
<para>Adds a time interval, equivalent to one month, to the argument value.
</para>
</summary>
<param name="date">
A <see cref="T:System.DateTime"/> value.
</param>
<returns>A <see cref="T:System.DateTime"/> value.
</returns>
</member>
<member name="T:DevExpress.XtraScheduler.TimeScaleHour">
<summary>
<para>Represents a time scale whose time cell value is equal to a single <b>hour</b>.
</para>
</summary>
</member>
<member name="M:DevExpress.XtraScheduler.TimeScaleHour.#ctor">
<summary>
<para>Initializes a new instance of the TimeScaleHour class with the default settings.
</para>
</summary>
</member>
<member name="M:DevExpress.XtraScheduler.TimeScaleHour.Floor(System.DateTime)">
<summary>
<para>Calculates the largest datetime value that is less or equal to the argument and represents an integer number of hours.
</para>
</summary>
<param name="date">
A <see cref="T:System.DateTime"/> value.
</param>
<returns>A <see cref="T:System.DateTime"/> value representing an argument rounded to hours.
</returns>
</member>
<member name="M:DevExpress.XtraScheduler.TimeScaleHour.GetNextDate(System.DateTime)">
<summary>
<para>Adds a time interval, equivalent to one hour, to the argument value.
</para>
</summary>
<param name="date">
A <see cref="T:System.DateTime"/> value.
</param>
<returns>A <see cref="T:System.DateTime"/> value.
</returns>
</member>
<member name="P:DevExpress.XtraScheduler.TimeScaleHour.Value">
<summary>
<para>Gets the value of the scale unit - a time interval equal to an hour.
</para>
</summary>
<value>A <see cref="T:System.TimeSpan"/> value representing the time interval of a scale unit.
</value>
</member>
<member name="T:DevExpress.XtraScheduler.TimeScaleDay">
<summary>
<para>Represents a time scale whose time cell value is equal to a single <b>day</b>.
</para>
</summary>
</member>
<member name="M:DevExpress.XtraScheduler.TimeScaleDay.#ctor">
<summary>
<para>Initializes a new instance of the TimeScaleDay class with the default settings.
</para>
</summary>
</member>
<member name="M:DevExpress.XtraScheduler.TimeScaleDay.Floor(System.DateTime)">
<summary>
<para>Calculates the largest datetime value that is less or equal to the argument and contains an integer number of days.
</para>
</summary>
<param name="date">
A <see cref="T:System.DateTime"/> value.
</param>
<returns>A <see cref="T:System.DateTime"/> value representing a date part of an argument.
</returns>
</member>
<member name="M:DevExpress.XtraScheduler.TimeScaleDay.GetNextDate(System.DateTime)">
<summary>
<para>Adds a time interval, equivalent to one day, to the argument value.
</para>
</summary>
<param name="date">
A <see cref="T:System.DateTime"/> value.
</param>
<returns>A <see cref="T:System.DateTime"/> value.
</returns>
</member>
<member name="M:DevExpress.XtraScheduler.TimeScaleDay.Round(System.DateTime)">
<summary>
<para>Calculates the datetime value that is the nearest to the argument and contains an integer number of days.
</para>
</summary>
<param name="date">
A <see cref="T:System.DateTime"/> value.
</param>
<returns>A <see cref="T:System.DateTime"/> value specifying a datetime argument rounded to days.
</returns>
</member>
<member name="P:DevExpress.XtraScheduler.TimeScaleDay.Value">
<summary>
<para>Gets the value of the scale unit - a time interval equal to a day.
</para>
</summary>
<value>A <see cref="T:System.TimeSpan"/> value representing the time interval of a scale unit.
</value>
</member>
<member name="T:DevExpress.XtraScheduler.ResourceIdCollection">
<summary>
<para>Represents a collection of resource IDs.
</para>
</summary>
</member>
<member name="M:DevExpress.XtraScheduler.ResourceIdCollection.#ctor">
<summary>
<para>Initializes a new instance of the ResourceIdCollection class with the default settings.
</para>
</summary>
</member>
<member name="T:DevExpress.XtraScheduler.AppointmentResourceIdCollection">
<summary>
<para>Represents a collection of resource IDs for a particular appointment.
</para>
</summary>
</member>
<member name="M:DevExpress.XtraScheduler.AppointmentResourceIdCollection.#ctor">
<summary>
<para>Initializes a new instance of the AppointmentResourceIdCollection class with the default settings.
</para>
</summary>
</member>
<member name="T:DevExpress.XtraScheduler.AppointmentStatusDisplayType">
<summary>
<para>Lists the values used to specify how the appointment status is displayed within an appointment.
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.AppointmentStatusDisplayType.Bounds">
<summary>
<para>The appointment status line has the same height (if shown vertically) or width (if shown horizontally) as the bounds of its appointment.
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.AppointmentStatusDisplayType.Never">
<summary>
<para>The appointment status line is invisible.
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.AppointmentStatusDisplayType.Time">
<summary>
<para>The appointment status line has the same height (if shown vertically) or width (if shown horizontally) as the time of its appointment.
</para>
</summary>
</member>
<member name="T:DevExpress.XtraScheduler.ReminderBase">
<summary>
<para>Serves as the base for classes which represent reminders for non-recurring and recurring appointments.
</para>
</summary>
</member>
<member name="P:DevExpress.XtraScheduler.ReminderBase.AlertTime">
<summary>
<para>Gets or sets the reminder's alert time.
</para>
</summary>
<value>A <see cref="T:System.DateTime"/> structure which specifies the reminder's alert time.
</value>
</member>
<member name="M:DevExpress.XtraScheduler.ReminderBase.Dismiss">
<summary>
<para>Switches the reminder off for the associated appointment.
</para>
</summary>
<returns><b>true</b> if the reminder has been successfully switched off; otherwise, <b>false</b>.
</returns>
</member>
<member name="E:DevExpress.XtraScheduler.ReminderBase.RemindTimeChanged">
<summary>
<para>Fires when the alert time changes.
</para>
</summary>
</member>
<member name="M:DevExpress.XtraScheduler.ReminderBase.Snooze(System.TimeSpan)">
<summary>
<para>Notifies the scheduler to defer the triggering of a reminder by the specified interval.
</para>
</summary>
<param name="remindAfter">
A <see cref="T:System.TimeSpan"/> value which represents the time interval by which the scheduler should delay the triggering of a reminder.
</param>
<returns><b>true</b> if a reminder alert has been successfully snoozed; otherwise, <b>false</b>.
</returns>
</member>
<member name="M:DevExpress.XtraScheduler.ReminderBase.Snooze(System.DateTime,System.TimeSpan)">
<summary>
<para>Notifies the scheduler to defer the triggering of a reminder by the specified interval starting from the specified <b>now</b> date and time.
</para>
</summary>
<param name="now">
A <see cref="T:System.DateTime"/> value which represents the date and time from which the snooze time interval will be counted.
</param>
<param name="remindAfter">
A <see cref="T:System.TimeSpan"/> value which represents the time interval by which the scheduler should delay the triggering of a reminder.
</param>
<returns><b>true</b> if a reminder alert has been successfully snoozed; otherwise, <b>false</b>.
</returns>
</member>
<member name="P:DevExpress.XtraScheduler.ReminderBase.TimeBeforeStart">
<summary>
<para>Gets or sets the time interval before the appointment's start time.
</para>
</summary>
<value>A <see cref="T:System.TimeSpan"/> structure which represents an interval before the appointment's start time. Default is 15 minutes.
</value>
</member>
<member name="T:DevExpress.XtraScheduler.TimeScaleCollection">
<summary>
<para>Represents a collection of time scales in the timeline view.
</para>
</summary>
</member>
<member name="M:DevExpress.XtraScheduler.TimeScaleCollection.#ctor">
<summary>
<para>Initializes a new instance of the TimeScaleCollection class with the default settings.
</para>
</summary>
</member>
<member name="T:DevExpress.XtraScheduler.TimeScale">
<summary>
<para>Serves as the base class for classes which are time scales in the Timeline view.
</para>
</summary>
</member>
<member name="M:DevExpress.XtraScheduler.TimeScale.Ceil(System.DateTime)">
<summary>
<para>Calculates the smallest datetime value that is greater or equal to the argument and contains an integer number of specified time units.
</para>
</summary>
<param name="date">
A <see cref="T:System.DateTime"/> value.
</param>
<returns>A <see cref="T:System.DateTime"/> value specifying a datetime argument rounded to a certain datetime unit.
</returns>
</member>
<member name="P:DevExpress.XtraScheduler.TimeScale.Color">
<summary>
<para>Overrides the <see cref="P:DevExpress.XtraScheduler.UserInterfaceObject.Color"/> property.
</para>
</summary>
<value>A <see cref="T:System.Drawing.Color"/> value which specifies the object's color.
</value>
</member>
<member name="P:DevExpress.XtraScheduler.TimeScale.DisplayFormat">
<summary>
<para>Gets or sets the format of the string displayed in the timeline caption.
</para>
</summary>
<value>A <see cref="T:System.String"/> value specifying the format string of the caption.
</value>
</member>
<member name="P:DevExpress.XtraScheduler.TimeScale.Enabled">
<summary>
<para>Gets or sets if the time scale is enabled for the View.
</para>
</summary>
<value><b>true</b> if the time scale is enabled; otherwise, <b>false</b>.
</value>
</member>
<member name="M:DevExpress.XtraScheduler.TimeScale.Floor(System.DateTime)">
<summary>
<para>Calculates the largest datetime value that is less or equal to the argument and contains an integer number of specified time units.
</para>
</summary>
<param name="date">
A <see cref="T:System.DateTime"/> value.
</param>
<returns>A <see cref="T:System.DateTime"/> value representing a datetime argument rounded to certain datetime unit.
</returns>
</member>
<member name="M:DevExpress.XtraScheduler.TimeScale.FormatCaption(System.DateTime,System.DateTime)">
<summary>
<para>Returns a string formatted according to display format for this scale type.
</para>
</summary>
<param name="start">
A <see cref="T:System.String"/> value representing a scale starting point.
</param>
<param name="end">
A <see cref="T:System.String"/> value representing a scale final point.
</param>
<returns>A <see cref="T:System.String"/> value to be used in a timeline caption.
</returns>
</member>
<member name="M:DevExpress.XtraScheduler.TimeScale.GetNextDate(System.DateTime)">
<summary>
<para>Adds a time interval equivalent to a scale unit to the argument value.
</para>
</summary>
<param name="date">
A <see cref="T:System.DateTime"/> value.
</param>
<returns>A <see cref="T:System.DateTime"/> value.
</returns>
</member>
<member name="M:DevExpress.XtraScheduler.TimeScale.GetPrevDate(System.DateTime)">
<summary>
<para>Subtracts a time interval equivalent to a scale unit to the argument value.
</para>
</summary>
<param name="date">
A <see cref="T:System.DateTime"/> value.
</param>
<returns>A <see cref="T:System.DateTime"/> value.
</returns>
</member>
<member name="E:DevExpress.XtraScheduler.TimeScale.PropertyChanged">
<summary>
<para>Occurs when any of the TimeScale class property values is changed.
</para>
</summary>
</member>
<member name="M:DevExpress.XtraScheduler.TimeScale.Round(System.DateTime)">
<summary>
<para>Calculates the datetime value that is the nearest to the argument value and contains an integer number of specified time units.
</para>
</summary>
<param name="date">
A <see cref="T:System.DateTime"/> value.
</param>
<returns>A <see cref="T:System.DateTime"/> value specifying a datetime argument rounded to a certain datetime unit.
</returns>
</member>
<member name="P:DevExpress.XtraScheduler.TimeScale.SerializationTypeName">
<summary>
<para>Gets the string containing the time scale type name.
</para>
</summary>
<value>A <see cref="T:System.String"/> value which contains the type name.
</value>
</member>
<member name="P:DevExpress.XtraScheduler.TimeScale.Visible">
<summary>
<para>Gets or sets whether the time scale is visible.
</para>
</summary>
<value><b>true</b> if the time scale is visible; otherwise, <b>false</b>.
</value>
</member>
<member name="P:DevExpress.XtraScheduler.TimeScale.Width">
<summary>
<para>Gets or sets the width of the time scale element.
</para>
</summary>
<value>An integer value specifying the width of the time scale.
</value>
</member>
<member name="T:DevExpress.XtraScheduler.WeekViewAppointmentDisplayOptions">
<summary>
<para>Provides options which define how appointments are painted when the currently active view is the Week View.
</para>
</summary>
</member>
<member name="M:DevExpress.XtraScheduler.WeekViewAppointmentDisplayOptions.#ctor">
<summary>
<para>Initializes a new instance of the WeekViewAppointmentDisplayOptions class with the default settings.
</para>
</summary>
</member>
<member name="P:DevExpress.XtraScheduler.WeekViewAppointmentDisplayOptions.AppointmentInterspacing">
<summary>
<para>Gets or sets the vertical distance between appointments.
</para>
</summary>
<value>An integer, representing the vertical distance between appointments (in pixels).
</value>
</member>
<member name="M:DevExpress.XtraScheduler.WeekViewAppointmentDisplayOptions.Assign(DevExpress.Utils.Controls.BaseOptions)">
<summary>
<para>Copies all the settings from the WeekViewAppointmentDisplayOptions object passed as a parameter.
</para>
</summary>
<param name="options">
A WeekViewAppointmentDisplayOptions object (which is the <see cref="T:DevExpress.Utils.Controls.BaseOptions"/> descendant) whose settings are assigned to the current object. If <b>null</b> (<b>Nothing</b> in Visual Basic), then a <see cref="T:System.ArgumentNullException"/> will be thrown.
</param>
</member>
<member name="P:DevExpress.XtraScheduler.WeekViewAppointmentDisplayOptions.ShowBordersForSameDayAppointments">
<summary>
<para>Gets or sets a value which specifies if left and right borders are shown for same day appointments in the <b>Week</b> view.
</para>
</summary>
<value><b>true</b> to show left and right borders for same day appointments; otherwise, <b>false</b>.
</value>
</member>
<member name="P:DevExpress.XtraScheduler.WeekViewAppointmentDisplayOptions.SnapToCellsMode">
<summary>
<para>Overrides the <see cref="P:DevExpress.XtraScheduler.AppointmentDisplayOptions.SnapToCellsMode"/> property to hide it.
</para>
</summary>
<value>Returns <b>AppointmentSnapToCellsMode.Always</b>
</value>
</member>
<member name="T:DevExpress.XtraScheduler.MonthViewAppointmentDisplayOptions">
<summary>
<para>Provides options which define how appointments are painted when the currently active view is the Month View.
</para>
</summary>
</member>
<member name="M:DevExpress.XtraScheduler.MonthViewAppointmentDisplayOptions.#ctor">
<summary>
<para>Initializes a new instance of the MonthViewAppointmentDisplayOptions class with the default settings.
</para>
</summary>
</member>
<member name="T:DevExpress.XtraScheduler.DayViewAppointmentDisplayOptions">
<summary>
<para>Provides options which define how appointments are painted when the currently active view is the Day View.
</para>
</summary>
</member>
<member name="M:DevExpress.XtraScheduler.DayViewAppointmentDisplayOptions.#ctor">
<summary>
<para>Initializes a new instance of the DayViewAppointmentDisplayOptions class with the default settings.
</para>
</summary>
</member>
<member name="P:DevExpress.XtraScheduler.DayViewAppointmentDisplayOptions.AllDayAppointmentsStatusDisplayType">
<summary>
<para>Gets or sets the display type of the <b>AllDayAppointment</b> status.
</para>
</summary>
<value>A <see cref="T:DevExpress.XtraScheduler.AppointmentStatusDisplayType"/> enumeration member specifying how the status should be displayed for the <b>AllDayAppointment</b>.
</value>
</member>
<member name="M:DevExpress.XtraScheduler.DayViewAppointmentDisplayOptions.Assign(DevExpress.Utils.Controls.BaseOptions)">
<summary>
<para>Copies all the settings from the DayViewAppointmentDisplayOptions object passed as a parameter.
</para>
</summary>
<param name="options">
A DayViewAppointmentDisplayOptions object (which is the <see cref="T:DevExpress.Utils.Controls.BaseOptions"/> descendant) whose settings are assigned to the current object. If <b>null</b> (<b>Nothing</b> in Visual Basic), then a <see cref="T:System.ArgumentNullException"/> will be thrown.
</param>
</member>
<member name="P:DevExpress.XtraScheduler.DayViewAppointmentDisplayOptions.ColumnPadding">
<summary>
<para>Enables you to specify appointment column paddings in the Day View.
</para>
</summary>
<value>A <see cref="T:DevExpress.XtraScheduler.SchedulerColumnPadding"/> instance specifying column paddings.
</value>
</member>
<member name="P:DevExpress.XtraScheduler.DayViewAppointmentDisplayOptions.ShowShadows">
<summary>
<para>Gets or sets a value indicating if shadows are shown for appointments.
</para>
</summary>
<value><b>true</b> to show shadows for appointments; otherwise, <b>false</b>.
</value>
</member>
<member name="T:DevExpress.XtraScheduler.AppointmentDisplayOptions">
<summary>
<para>Serves as the base for classes which provide options to define how appointments are displayed when a particular view is currently active.
</para>
</summary>
</member>
<member name="M:DevExpress.XtraScheduler.AppointmentDisplayOptions.#ctor">
<summary>
<para>Initializes a new instance of the AppointmentDisplayOptions class with the default settings.
</para>
</summary>
</member>
<member name="P:DevExpress.XtraScheduler.AppointmentDisplayOptions.AppointmentAutoHeight">
<summary>
<para>Gets or sets whether an appointment should change its height to fit the text to display.
</para>
</summary>
<value><b>true</b> if an appointment's height is changed automatically to fit the text; otherwise, <b>false</b>.
</value>
</member>
<member name="P:DevExpress.XtraScheduler.AppointmentDisplayOptions.AppointmentHeight">
<summary>
<para>Gets or sets the height of a single appointment for the current View (in pixels).
</para>
</summary>
<value>An integer value which represents the appointment height measured in pixels.
</value>
</member>
<member name="M:DevExpress.XtraScheduler.AppointmentDisplayOptions.Assign(DevExpress.Utils.Controls.BaseOptions)">
<summary>
<para>Copies all the settings from the AppointmentDisplayOptions object passed as a parameter.
</para>
</summary>
<param name="options">
An AppointmentDisplayOptions object (which is the <see cref="T:DevExpress.Utils.Controls.BaseOptions"/> descendant) whose settings are assigned to the current object. If <b>null</b> (<b>Nothing</b> in Visual Basic), then a <see cref="T:System.ArgumentNullException"/> will be thrown.
</param>
</member>
<member name="P:DevExpress.XtraScheduler.AppointmentDisplayOptions.ContinueArrowDisplayType">
<summary>
<para>Specifies the type of indicator used to point out that the appointment extends beyond the visible date range.
</para>
</summary>
<value>A <see cref="T:DevExpress.XtraScheduler.AppointmentContinueArrowDisplayType"/> enumeration member.
</value>
</member>
<member name="P:DevExpress.XtraScheduler.AppointmentDisplayOptions.EndTimeVisibility">
<summary>
<para>Specifies whether the end time should be visible for the appointment.
</para>
</summary>
<value>An <see cref="T:DevExpress.XtraScheduler.AppointmentTimeVisibility"/> enumeration specifying whether the appointment end time should be displayed.
</value>
</member>
<member name="P:DevExpress.XtraScheduler.AppointmentDisplayOptions.ShowRecurrence">
<summary>
<para>Specify whether the recurrence symbol should be displayed for the recurrent appointment.
</para>
</summary>
<value><b>true</b> if a recurrence symbol should be displayed; otherwise, <b>false</b>.
</value>
</member>
<member name="P:DevExpress.XtraScheduler.AppointmentDisplayOptions.ShowReminder">
<summary>
<para>Specify whether the reminder symbol should be displayed for an appointment with a reminder.
</para>
</summary>
<value><b>true</b> if a reminder symbol should be displayed; otherwise, <b>false</b>.
</value>
</member>
<member name="P:DevExpress.XtraScheduler.AppointmentDisplayOptions.SnapToCells">
<summary>
<para>Specifies whether the appointment should snap to cell borders.
</para>
</summary>
<value><b>true</b> if appointments are snapped to cells; otherwise, <b>false</b>.
</value>
</member>
<member name="P:DevExpress.XtraScheduler.AppointmentDisplayOptions.SnapToCellsMode">
<summary>
<para>Gets or sets the method of snapping appointments to time cells.
</para>
</summary>
<value>A <see cref="T:DevExpress.XtraScheduler.AppointmentSnapToCellsMode"/> enumeration member, specifying the snap method.
</value>
</member>
<member name="P:DevExpress.XtraScheduler.AppointmentDisplayOptions.StartTimeVisibility">
<summary>
<para>Specifies whether the start time should be visible for the appointment.
</para>
</summary>
<value>An <see cref="T:DevExpress.XtraScheduler.AppointmentTimeVisibility"/> enumeration specifying whether the appointment start time should be displayed.
</value>
</member>
<member name="P:DevExpress.XtraScheduler.AppointmentDisplayOptions.StatusDisplayType">
<summary>
<para>Specifies whether the border of an appointment should be colorized according to the time status and appointment duration.
</para>
</summary>
<value>An <see cref="T:DevExpress.XtraScheduler.AppointmentStatusDisplayType"/> enumeration value.
</value>
</member>
<member name="P:DevExpress.XtraScheduler.AppointmentDisplayOptions.TimeDisplayType">
<summary>
<para>Specifies how the start and end time of the appointment should be displayed - using symbols or digits.
</para>
</summary>
<value>A <see cref="P:DevExpress.XtraScheduler.AppointmentDisplayOptions.TimeDisplayType"/> enumeration member.
</value>
</member>
<member name="M:DevExpress.XtraScheduler.AppointmentDisplayOptions.ToString">
<summary>
<para>Returns the textual representation of appointment display options.
</para>
</summary>
<returns>A <see cref="T:System.String"/> value which is the textual representation of appointment display options.
</returns>
</member>
<member name="T:DevExpress.XtraScheduler.AppointmentSynchronizingEventHandler">
<summary>
<para>Represents a method that will handle the <see cref="E:DevExpress.XtraScheduler.Exchange.AppointmentSynchronizer.AppointmentSynchronizing"/> event.
</para>
</summary>
</member>
<member name="M:DevExpress.XtraScheduler.AppointmentSynchronizingEventHandler.Invoke(System.Object,DevExpress.XtraScheduler.AppointmentSynchronizingEventArgs)">
<summary>
<para>Represents a method that will handle the <see cref="E:DevExpress.XtraScheduler.Exchange.AppointmentSynchronizer.AppointmentSynchronizing"/> event.
</para>
</summary>
<param name="sender">
The event source.
</param>
<param name="e">
An <see cref="T:DevExpress.XtraScheduler.AppointmentSynchronizingEventArgs"/> object which contains event data.
</param>
</member>
<member name="T:DevExpress.XtraScheduler.AppointmentSynchronizingEventArgs">
<summary>
<para>Provides data for the <see cref="E:DevExpress.XtraScheduler.Exchange.AppointmentSynchronizer.AppointmentSynchronizing"/> event.
</para>
</summary>
</member>
<member name="M:DevExpress.XtraScheduler.AppointmentSynchronizingEventArgs.#ctor(DevExpress.XtraScheduler.Appointment)">
<summary>
<para>Initializes a new instance of the AppointmentSynchronizingEventArgs class with the specified appointment.
</para>
</summary>
<param name="apt">
An <see cref="T:DevExpress.XtraScheduler.Appointment"/> value which represents the appointment for which the event was raised. This value is assigned to the <see cref="P:DevExpress.XtraScheduler.AppointmentEventArgs.Appointment"/> property.
</param>
</member>
<member name="M:DevExpress.XtraScheduler.AppointmentSynchronizingEventArgs.#ctor">
<summary>
<para>Initializes a new instance of the AppointmentSynchronizingEventArgs class with the default settings.
</para>
</summary>
</member>
<member name="P:DevExpress.XtraScheduler.AppointmentSynchronizingEventArgs.Operation">
<summary>
<para>Specifies what type of synchronization operation should be performed.
</para>
</summary>
<value>A <see cref="T:DevExpress.XtraScheduler.SynchronizeOperation"/> enumeration value.
</value>
</member>
<member name="T:DevExpress.XtraScheduler.AppointmentSynchronizedEventHandler">
<summary>
<para>Represents a method that will handle the <see cref="E:DevExpress.XtraScheduler.Exchange.AppointmentSynchronizer.AppointmentSynchronized"/> event.
</para>
</summary>
</member>
<member name="M:DevExpress.XtraScheduler.AppointmentSynchronizedEventHandler.Invoke(System.Object,DevExpress.XtraScheduler.AppointmentSynchronizedEventArgs)">
<summary>
<para>Represents a method that will handle the <see cref="E:DevExpress.XtraScheduler.Exchange.AppointmentSynchronizer.AppointmentSynchronized"/> event.
</para>
</summary>
<param name="sender">
The event source.
</param>
<param name="e">
An <see cref="T:DevExpress.XtraScheduler.AppointmentSynchronizedEventArgs"/> object which contains event data.
</param>
</member>
<member name="T:DevExpress.XtraScheduler.AppointmentSynchronizedEventArgs">
<summary>
<para>Provides data for the <see cref="E:DevExpress.XtraScheduler.Exchange.AppointmentSynchronizer.AppointmentSynchronized"/> event.
</para>
</summary>
</member>
<member name="M:DevExpress.XtraScheduler.AppointmentSynchronizedEventArgs.#ctor(DevExpress.XtraScheduler.Appointment)">
<summary>
<para>Initializes a new instance of the AppointmentSynchronizedEventArgs class with the specified appointment.
</para>
</summary>
<param name="apt">
An <see cref="T:DevExpress.XtraScheduler.Appointment"/> value which represents the appointment for which the event was raised. This value is assigned to the <see cref="P:DevExpress.XtraScheduler.AppointmentEventArgs.Appointment"/> property.
</param>
</member>
<member name="M:DevExpress.XtraScheduler.AppointmentSynchronizedEventArgs.#ctor">
<summary>
<para>Initializes a new instance of the AppointmentSynchronizedEventArgs class with the default settings.
</para>
</summary>
</member>
<member name="T:DevExpress.XtraScheduler.AppointmentDragEventHandler">
<summary>
<para>Represents a method that will handle the <see cref="E:DevExpress.XtraScheduler.SchedulerControl.AppointmentDrag"/> event.
</para>
</summary>
</member>
<member name="M:DevExpress.XtraScheduler.AppointmentDragEventHandler.Invoke(System.Object,DevExpress.XtraScheduler.AppointmentDragEventArgs)">
<summary>
<para>Represents a method that will handle the <see cref="E:DevExpress.XtraScheduler.SchedulerControl.AppointmentDrag"/> event.
</para>
</summary>
<param name="sender">
The event source. This parameter identifies the <see cref="T:DevExpress.XtraScheduler.SchedulerControl"/> which raised the event.
</param>
<param name="e">
An <see cref="T:DevExpress.XtraScheduler.AppointmentDragEventArgs"/> object which contains event data.
</param>
</member>
<member name="T:DevExpress.XtraScheduler.AppointmentDragEventArgs">
<summary>
<para>Provides data for the <see cref="E:DevExpress.XtraScheduler.SchedulerControl.AppointmentDrag"/> event.
</para>
</summary>
</member>
<member name="M:DevExpress.XtraScheduler.AppointmentDragEventArgs.#ctor(DevExpress.XtraScheduler.Appointment,DevExpress.XtraScheduler.Appointment,DevExpress.XtraScheduler.TimeInterval,DevExpress.XtraScheduler.Resource)">
<summary>
<para>Initializes a new instance of the AppointmentDragEventArgs class with the specified settings.
</para>
</summary>
<param name="sourceAppointment">
An <see cref="T:DevExpress.XtraScheduler.Appointment"/> object which represents the event's source appointment. This value is assigned to the <see cref="P:DevExpress.XtraScheduler.AppointmentDragEventArgs.SourceAppointment"/> property.
</param>
<param name="editedAppointment">
An <see cref="T:DevExpress.XtraScheduler.Appointment"/> object which represents the event's edited appointment. This value is assigned to the <see cref="P:DevExpress.XtraScheduler.AppointmentDragEventArgs.EditedAppointment"/> property.
</param>
<param name="hitInterval">
A <see cref="T:DevExpress.XtraScheduler.TimeInterval"/> value which represents the event's time interval. This value is assigned to the <see cref="P:DevExpress.XtraScheduler.AppointmentDragEventArgs.HitInterval"/> property.
</param>
<param name="hitResource">
A <see cref="T:DevExpress.XtraScheduler.Resource"/> object which represents the event's resource. This value is assigned to the <see cref="P:DevExpress.XtraScheduler.AppointmentDragEventArgs.HitResource"/> property.
</param>
</member>
<member name="P:DevExpress.XtraScheduler.AppointmentDragEventArgs.Allow">
<summary>
<para>Specifies whether the appointment can be dragged along the time cells.
</para>
</summary>
<value><b>true</b> if appointment dragging is allowed; otherwise, <b>false</b>.
</value>
</member>
<member name="P:DevExpress.XtraScheduler.AppointmentDragEventArgs.EditedAppointment">
<summary>
<para>Gets the appointment being edited in the drag-and-drop event.
</para>
</summary>
<value>An <see cref="T:DevExpress.XtraScheduler.Appointment"/> object.
</value>
</member>
<member name="P:DevExpress.XtraScheduler.AppointmentDragEventArgs.ForceUpdateFromStorage">
<summary>
<para>Gets or sets whether the View is forced to query appointments from the storage.
</para>
</summary>
<value><b>true</b> to query appointments from storage; otherwise, <b>false</b>.
</value>
</member>
<member name="P:DevExpress.XtraScheduler.AppointmentDragEventArgs.Handled">
<summary>
<para>Gets or sets whether the drag-and-drop operation is handled, and therefore no default processing is required.
</para>
</summary>
<value><b>true</b> if no default processing is required; otherwise, <b>false</b>.
</value>
</member>
<member name="P:DevExpress.XtraScheduler.AppointmentDragEventArgs.HitInterval">
<summary>
<para>Gets the time interval represented by the time cell to which an appointment was dragged.
</para>
</summary>
<value>A <see cref="T:DevExpress.XtraScheduler.TimeInterval"/> object.
</value>
</member>
<member name="P:DevExpress.XtraScheduler.AppointmentDragEventArgs.HitResource">
<summary>
<para>Gets the resource to which an appointment was dragged.
</para>
</summary>
<value>A <see cref="T:DevExpress.XtraScheduler.Resource"/> object.
</value>
</member>
<member name="P:DevExpress.XtraScheduler.AppointmentDragEventArgs.NewAppointmentResourceIds">
<summary>
<para>Gets or sets the IDs of resources for a new appointment.
</para>
</summary>
<value>A <see cref="T:DevExpress.XtraScheduler.ResourceIdCollection"/> object.
</value>
</member>
<member name="P:DevExpress.XtraScheduler.AppointmentDragEventArgs.SourceAppointment">
<summary>
<para>Gets the source appointment in the drag-and-drop event.
</para>
</summary>
<value>An <see cref="T:DevExpress.XtraScheduler.Appointment"/> object.
</value>
</member>
<member name="T:DevExpress.XtraScheduler.AppointmentImportingEventHandler">
<summary>
<para>Represents a method that will handle the <see cref="E:DevExpress.XtraScheduler.Exchange.AppointmentImporter.AppointmentImporting"/> event.
</para>
</summary>
</member>
<member name="M:DevExpress.XtraScheduler.AppointmentImportingEventHandler.Invoke(System.Object,DevExpress.XtraScheduler.AppointmentImportingEventArgs)">
<summary>
<para>Represents a method that will handle the <see cref="E:DevExpress.XtraScheduler.Exchange.AppointmentImporter.AppointmentImporting"/> event.
</para>
</summary>
<param name="sender">
The event source.
</param>
<param name="e">
An <see cref="T:DevExpress.XtraScheduler.AppointmentImportingEventArgs"/> object which contains event data.
</param>
</member>
<member name="T:DevExpress.XtraScheduler.AppointmentImportingEventArgs">
<summary>
<para>Provides data for the <see cref="E:DevExpress.XtraScheduler.Exchange.AppointmentImporter.AppointmentImporting"/> event.
</para>
</summary>
</member>
<member name="M:DevExpress.XtraScheduler.AppointmentImportingEventArgs.#ctor(DevExpress.XtraScheduler.Appointment)">
<summary>
<para>Initializes a new instance of the AppointmentImportingEventArgs class with the specified appointment.
</para>
</summary>
<param name="apt">
An <see cref="T:DevExpress.XtraScheduler.Appointment"/> value which represents the appointment for which the event was raised. This value is assigned to the <see cref="P:DevExpress.XtraScheduler.AppointmentEventArgs.Appointment"/> property.
</param>
</member>
<member name="T:DevExpress.XtraScheduler.AppointmentImportedEventHandler">
<summary>
<para>Represents a method that will handle the <see cref="E:DevExpress.XtraScheduler.Exchange.AppointmentImporter.AppointmentImported"/> event.
</para>
</summary>
</member>
<member name="M:DevExpress.XtraScheduler.AppointmentImportedEventHandler.Invoke(System.Object,DevExpress.XtraScheduler.AppointmentImportedEventArgs)">
<summary>
<para>Represents a method that will handle the <see cref="E:DevExpress.XtraScheduler.Exchange.AppointmentImporter.AppointmentImported"/> event.
</para>
</summary>
<param name="sender">
The event source.
</param>
<param name="e">
An <see cref="T:DevExpress.XtraScheduler.AppointmentImportedEventArgs"/> object which contains event data.
</param>
</member>
<member name="T:DevExpress.XtraScheduler.AppointmentImportedEventArgs">
<summary>
<para>Provides data for the <see cref="E:DevExpress.XtraScheduler.Exchange.AppointmentImporter.AppointmentImported"/> event.
</para>
</summary>
</member>
<member name="M:DevExpress.XtraScheduler.AppointmentImportedEventArgs.#ctor(DevExpress.XtraScheduler.Appointment)">
<summary>
<para>Initializes a new instance of the AppointmentImportedEventArgs class with the specified appointment.
</para>
</summary>
<param name="apt">
An <see cref="T:DevExpress.XtraScheduler.Appointment"/> value which represents the appointment for which the event was raised. This value is assigned to the <see cref="P:DevExpress.XtraScheduler.AppointmentEventArgs.Appointment"/> property.
</param>
</member>
<member name="T:DevExpress.XtraScheduler.AppointmentExportingEventHandler">
<summary>
<para>Represents a method that will handle the <see cref="E:DevExpress.XtraScheduler.Exchange.AppointmentExporter.AppointmentExporting"/> event.
</para>
</summary>
</member>
<member name="M:DevExpress.XtraScheduler.AppointmentExportingEventHandler.Invoke(System.Object,DevExpress.XtraScheduler.AppointmentExportingEventArgs)">
<summary>
<para>Represents a method that will handle the <see cref="E:DevExpress.XtraScheduler.Exchange.AppointmentExporter.AppointmentExporting"/> event.
</para>
</summary>
<param name="sender">
The event source.
</param>
<param name="e">
An <see cref="T:DevExpress.XtraScheduler.AppointmentExportingEventArgs"/> object which contains event data.
</param>
</member>
<member name="T:DevExpress.XtraScheduler.AppointmentExportingEventArgs">
<summary>
<para>Provides data for the <see cref="E:DevExpress.XtraScheduler.Exchange.AppointmentExporter.AppointmentExporting"/> event.
</para>
</summary>
</member>
<member name="M:DevExpress.XtraScheduler.AppointmentExportingEventArgs.#ctor(DevExpress.XtraScheduler.Appointment)">
<summary>
<para>Initializes a new instance of the AppointmentExportingEventArgs class with the specified appointment.
</para>
</summary>
<param name="apt">
An <see cref="T:DevExpress.XtraScheduler.Appointment"/> value which represents the appointment for which the event was raised. This value is assigned to the <see cref="P:DevExpress.XtraScheduler.AppointmentEventArgs.Appointment"/> property.
</param>
</member>
<member name="T:DevExpress.XtraScheduler.AppointmentExportedEventHandler">
<summary>
<para>Represents a method that will handle the <see cref="E:DevExpress.XtraScheduler.Exchange.AppointmentExporter.AppointmentExported"/> event.
</para>
</summary>
</member>
<member name="M:DevExpress.XtraScheduler.AppointmentExportedEventHandler.Invoke(System.Object,DevExpress.XtraScheduler.AppointmentExportedEventArgs)">
<summary>
<para>Represents a method that will handle the <see cref="E:DevExpress.XtraScheduler.Exchange.AppointmentExporter.AppointmentExported"/> event.
</para>
</summary>
<param name="sender">
The event source.
</param>
<param name="e">
An <see cref="T:DevExpress.XtraScheduler.AppointmentExportedEventArgs"/> object which contains event data.
</param>
</member>
<member name="T:DevExpress.XtraScheduler.AppointmentExportedEventArgs">
<summary>
<para>Provides data for the <see cref="E:DevExpress.XtraScheduler.Exchange.AppointmentExporter.AppointmentExported"/> event.
</para>
</summary>
</member>
<member name="M:DevExpress.XtraScheduler.AppointmentExportedEventArgs.#ctor(DevExpress.XtraScheduler.Appointment)">
<summary>
<para>Initializes a new instance of the AppointmentExportedEventArgs class with the specified appointment.
</para>
</summary>
<param name="apt">
An <see cref="T:DevExpress.XtraScheduler.Appointment"/> value which represents the appointment for which the event was raised. This value is assigned to the <see cref="P:DevExpress.XtraScheduler.AppointmentEventArgs.Appointment"/> property.
</param>
</member>
<member name="T:DevExpress.XtraScheduler.AppointmentDisplayTextEventHandler">
<summary>
<para>Represents a method that will handle the <see cref="E:DevExpress.XtraScheduler.SchedulerControl.InitAppointmentDisplayText"/> event.
</para>
</summary>
</member>
<member name="M:DevExpress.XtraScheduler.AppointmentDisplayTextEventHandler.Invoke(System.Object,DevExpress.XtraScheduler.AppointmentDisplayTextEventArgs)">
<summary>
<para>Represents a method that will handle the <see cref="E:DevExpress.XtraScheduler.SchedulerControl.InitAppointmentDisplayText"/> event.
</para>
</summary>
<param name="sender">
The event source. This parameter identifies the <see cref="T:DevExpress.XtraScheduler.SchedulerControl"/> which raised the event.
</param>
<param name="e">
An <see cref="T:DevExpress.XtraScheduler.AppointmentDisplayTextEventArgs"/> object which contains event data.
</param>
</member>
<member name="T:DevExpress.XtraScheduler.AppointmentDisplayTextEventArgs">
<summary>
<para>Provides data for the <see cref="E:DevExpress.XtraScheduler.SchedulerControl.InitAppointmentDisplayText"/> event.
</para>
</summary>
</member>
<member name="M:DevExpress.XtraScheduler.AppointmentDisplayTextEventArgs.#ctor(DevExpress.XtraScheduler.Drawing.IAppointmentViewInfo,System.String,System.String)">
<summary>
<para>Initializes a new instance of the AppointmentDisplayTextEventArgs class with specified settings.
</para>
</summary>
<param name="viewInfo">
An <see cref="T:DevExpress.XtraScheduler.Drawing.IAppointmentViewInfo"/> interface defining view information for the appointment.
</param>
<param name="text">
A string, representing the text displayed in the upper (indicative) part of the appointment region
</param>
<param name="description">
A string, representing the text displayed in the main (informative) part of the appointment region
</param>
</member>
<member name="P:DevExpress.XtraScheduler.AppointmentDisplayTextEventArgs.Appointment">
<summary>
<para>Provides access to the appointment for which the <see cref="E:DevExpress.XtraScheduler.SchedulerControl.InitAppointmentDisplayText"/> event is fired.
</para>
</summary>
<value>An <see cref="T:DevExpress.XtraScheduler.Appointment"/> that is prepared for display.
</value>
</member>
<member name="P:DevExpress.XtraScheduler.AppointmentDisplayTextEventArgs.Description">
<summary>
<para>Gets or sets the text that will be displayed as an appointment's description.
</para>
</summary>
<value>A <see cref="T:System.String"/> value which represents the description displayed for the appointment.
</value>
</member>
<member name="P:DevExpress.XtraScheduler.AppointmentDisplayTextEventArgs.Text">
<summary>
<para>Gets or sets the text that will be displayed as the appointment's text (subject and location together).
</para>
</summary>
<value>A <see cref="T:System.String"/> value which represents the displayed text of the appointment.
</value>
</member>
<member name="P:DevExpress.XtraScheduler.AppointmentDisplayTextEventArgs.ViewInfo">
<summary>
<para>Provides access to the characteristics of the appointment prepared for display.
</para>
</summary>
<value>An <see cref="T:DevExpress.XtraScheduler.Drawing.IAppointmentViewInfo"/> interface defining view characteristics for the appointment.
</value>
</member>
<member name="T:DevExpress.XtraScheduler.AppointmentConflictEventHandler">
<summary>
<para>Represents a method that will handle the <see cref="E:DevExpress.XtraScheduler.SchedulerControl.AllowAppointmentConflicts"/> event.
</para>
</summary>
</member>
<member name="M:DevExpress.XtraScheduler.AppointmentConflictEventHandler.Invoke(System.Object,DevExpress.XtraScheduler.AppointmentConflictEventArgs)">
<summary>
<para>Represents a method that will handle the <see cref="E:DevExpress.XtraScheduler.SchedulerControl.AllowAppointmentConflicts"/> event.
</para>
</summary>
<param name="sender">
The event source. This parameter identifies the <see cref="T:DevExpress.XtraScheduler.SchedulerControl"/> which raised the event.
</param>
<param name="e">
An <see cref="T:DevExpress.XtraScheduler.AppointmentConflictEventArgs"/> object which contains event data.
</param>
</member>
<member name="T:DevExpress.XtraScheduler.AppointmentConflictEventArgs">
<summary>
<para>Provides data for the <see cref="E:DevExpress.XtraScheduler.SchedulerControl.AllowAppointmentConflicts"/> event.
</para>
</summary>
</member>
<member name="M:DevExpress.XtraScheduler.AppointmentConflictEventArgs.#ctor(DevExpress.XtraScheduler.Appointment,DevExpress.XtraScheduler.Appointment,DevExpress.XtraScheduler.AppointmentBaseCollection)">
<summary>
<para>Initializes a new instance of the AppointmentConflictEventArgs class with the specified settings.
</para>
</summary>
<param name="apt">
An <see cref="T:DevExpress.XtraScheduler.Appointment"/> object which represents the event's appointment. This value is assigned to the <see cref="P:DevExpress.XtraScheduler.AppointmentEventArgs.Appointment"/> property.
</param>
<param name="clone">
An <see cref="T:DevExpress.XtraScheduler.Appointment"/> object which represents the appointment's clone to be copied to a new <see cref="P:DevExpress.XtraScheduler.AppointmentConflictEventArgs.Interval"/>. This value is assigned to the <see cref="P:DevExpress.XtraScheduler.AppointmentConflictEventArgs.AppointmentClone"/> property.
</param>
<param name="conflicts">
An <see cref="T:DevExpress.XtraScheduler.AppointmentBaseCollection"/> object which represents a collection of appointments which are considered to be conflicting with the current <see cref="P:DevExpress.XtraScheduler.AppointmentEventArgs.Appointment"/>. This value is assigned to the <see cref="P:DevExpress.XtraScheduler.AppointmentConflictEventArgs.Conflicts"/> property.
</param>
</member>
<member name="P:DevExpress.XtraScheduler.AppointmentConflictEventArgs.AppointmentClone">
<summary>
<para>Gets the clone of the appointment being processed in the <see cref="E:DevExpress.XtraScheduler.SchedulerControl.AllowAppointmentConflicts"/> or the <see cref="E:DevExpress.Xpf.Scheduler.SchedulerControl.AllowAppointmentConflicts"/> events.
</para>
</summary>
<value>An <see cref="T:DevExpress.XtraScheduler.Appointment"/> object which represents a clone of the <see cref="P:DevExpress.XtraScheduler.AppointmentEventArgs.Appointment"/>.
</value>
</member>
<member name="P:DevExpress.XtraScheduler.AppointmentConflictEventArgs.Conflicts">
<summary>
<para>Gets the collection of appointments which are considered to be conflicting with the current appointment.
</para>
</summary>
<value>An <see cref="T:DevExpress.XtraScheduler.AppointmentBaseCollection"/> object which contains all appointments which are in conflict with the current one.
</value>
</member>
<member name="P:DevExpress.XtraScheduler.AppointmentConflictEventArgs.Interval">
<summary>
<para>Gets the time interval which the event was raised for.
</para>
</summary>
<value>A <see cref="T:DevExpress.XtraScheduler.TimeInterval"/> object which represents the time interval that the event was raised for.
</value>
</member>
<member name="M:DevExpress.XtraScheduler.AppointmentConflictEventArgs.RemoveConflictsWithDifferentResource(DevExpress.XtraScheduler.AppointmentBaseCollection,System.Object)">
<summary>
<para>Removes all the conflicting appointments from the specified collection whose <see cref="P:DevExpress.XtraScheduler.Appointment.ResourceId"/> doesn't match the specified Id.
</para>
</summary>
<param name="conflicts">
An <see cref="T:DevExpress.XtraScheduler.AppointmentBaseCollection"/> object that contains all conflicting appointments.
</param>
<param name="resourceId">
A <see cref="T:System.Object"/> that specifies the resource Id which appointments should be left in the collection.
</param>
</member>
<member name="T:DevExpress.XtraScheduler.SynchronizeOperation">
<summary>
<para>Lists the values used to specify the currently performed operation when synchronizing the scheduler's data.
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.SynchronizeOperation.Create">
<summary>
<para>A new appointment will be created in the synchronization target.
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.SynchronizeOperation.Delete">
<summary>
<para>An appointment in the synchronization target will be deleted.
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.SynchronizeOperation.Replace">
<summary>
<para>An appointment in the synchronization target will be replaced by an appropriate appointment from the synchronization source.
</para>
</summary>
</member>
<member name="T:DevExpress.XtraScheduler.AppointmentTimeVisibility">
<summary>
<para>Lists the values used to specify the visibility state of the start and end time within appointments.
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.AppointmentTimeVisibility.Always">
<summary>
<para>Appointment time is always shown.
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.AppointmentTimeVisibility.Auto">
<summary>
<para>Whether the appointment time is shown or not is determined automatically according to the current scheduler view's settings.
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.AppointmentTimeVisibility.Never">
<summary>
<para>Appointment time is never shown.
</para>
</summary>
</member>
<member name="T:DevExpress.XtraScheduler.AppointmentTimeDisplayType">
<summary>
<para>Lists the values used to specify how the start and end time are displayed within appointments.
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.AppointmentTimeDisplayType.Auto">
<summary>
<para>The start and end time of appointments are automatically shown by the Scheduler Control either as text or as clocks.
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.AppointmentTimeDisplayType.Clock">
<summary>
<para>The start and end time of appointments are always shown as clocks.
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.AppointmentTimeDisplayType.Text">
<summary>
<para>The start and end time of appointments are always shown as text.
</para>
</summary>
</member>
<member name="T:DevExpress.XtraScheduler.AppointmentSelectionChangeAction">
<summary>
<para>Specifies how the selection is applied to the specified appointment.
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.AppointmentSelectionChangeAction.Add">
<summary>
<para>The appointment is added to the collection of selected appointments, available via the <see cref="P:DevExpress.XtraScheduler.SchedulerControl.SelectedAppointments"/> property.
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.AppointmentSelectionChangeAction.Clear">
<summary>
<para>The <see cref="P:DevExpress.XtraScheduler.SchedulerControl.SelectedAppointments"/> collection is cleared.
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.AppointmentSelectionChangeAction.None">
<summary>
<para>Does nothing.
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.AppointmentSelectionChangeAction.Select">
<summary>
<para>Adds the specified appointment to the collection of selected appointments.
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.AppointmentSelectionChangeAction.Toggle">
<summary>
<para>Changes the selection state of the appointment to the alternative.
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.AppointmentSelectionChangeAction.Unselect">
<summary>
<para>Deselects the specified appointment.
</para>
</summary>
</member>
<member name="T:DevExpress.XtraScheduler.ColorSavingType">
<summary>
<para>Lists the allowed color representation formats.
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.ColorSavingType.ArgbColor">
<summary>
<para>Stores the color setting in ARGB format.
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.ColorSavingType.Color">
<summary>
<para>Stores the color setting as a system defined color <see cref="T:System.Drawing.Color"/>.
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.ColorSavingType.OleColor">
<summary>
<para>Stores the color setting in OLE_COLOR format.
</para>
</summary>
</member>
<member name="T:DevExpress.XtraScheduler.SchedulerColumnPadding">
<summary>
<para> Represents a storage for the parameters used to specify the distance from the appointmernt's boundary to the column's inner border in the Day View
</para>
</summary>
</member>
<member name="M:DevExpress.XtraScheduler.SchedulerColumnPadding.#ctor">
<summary>
<para>Initializes a new instance of the SchedulerColumnPadding class with the specified setting.
</para>
</summary>
</member>
<member name="M:DevExpress.XtraScheduler.SchedulerColumnPadding.Assign(DevExpress.Utils.Controls.BaseOptions)">
<summary>
<para>Copies all the settings from the SchedulerColumnPadding object passed as a parameter.
</para>
</summary>
<param name="options">
A SchedulerColumnPadding object whose settings are assigned to the current object.
</param>
</member>
<member name="P:DevExpress.XtraScheduler.SchedulerColumnPadding.Left">
<summary>
<para>Gets or sets the distance of the appointment's left edge from the column's inner left border in the Day view.
</para>
</summary>
<value>An integer, specifying the distance in pixels.
</value>
</member>
<member name="P:DevExpress.XtraScheduler.SchedulerColumnPadding.Right">
<summary>
<para>Gets or sets the distance of the appointment's right edge from the column's inner right border in the Day view.
</para>
</summary>
<value>An integer, specifying the distance in pixels.
</value>
</member>
<member name="T:DevExpress.XtraScheduler.Drawing.SchedulerHitTest">
<summary>
<para>Lists the values that identify a scheduler's elements.
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.Drawing.SchedulerHitTest.AllDayArea">
<summary>
<para>The test point belongs to the all-day area.
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.Drawing.SchedulerHitTest.AppointmentContent">
<summary>
<para>The test point belongs to contents of an appointment.
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.Drawing.SchedulerHitTest.AppointmentDependency">
<summary>
<para>The test point belongs to the Dependency
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.Drawing.SchedulerHitTest.AppointmentMoveEdge">
<summary>
<para>The test point belongs to the movable edge of an appointment.
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.Drawing.SchedulerHitTest.AppointmentResizingBottomEdge">
<summary>
<para>The test point belongs to the bottom resizable edge of an appointment.
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.Drawing.SchedulerHitTest.AppointmentResizingLeftEdge">
<summary>
<para>The test point belongs to the left resizable edge of an appointment.
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.Drawing.SchedulerHitTest.AppointmentResizingRightEdge">
<summary>
<para>The test point belongs to the right resizable edge of an appointment.
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.Drawing.SchedulerHitTest.AppointmentResizingTopEdge">
<summary>
<para>The test point belongs to the top resizable edge of an appointment.
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.Drawing.SchedulerHitTest.Cell">
<summary>
<para>The test point belongs to a time cell.
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.Drawing.SchedulerHitTest.DayHeader">
<summary>
<para>The test point belongs to a day header.
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.Drawing.SchedulerHitTest.DayOfWeekHeader">
<summary>
<para>The test point belongs to a day of week header.
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.Drawing.SchedulerHitTest.DayViewColumn">
<summary>
<para>The test point belongs to a column in a Day View.
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.Drawing.SchedulerHitTest.GroupSeparator">
<summary>
<para>The test point belongs to the group separator, which separates one group from another.
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.Drawing.SchedulerHitTest.MoreButton">
<summary>
<para>The test point belongs to a MoreButton.
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.Drawing.SchedulerHitTest.NavigationButton">
<summary>
<para>The test point belongs to the navigation button.
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.Drawing.SchedulerHitTest.None">
<summary>
<para>The test point does not belong to any visual element or is outside the scheduler.
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.Drawing.SchedulerHitTest.ResourceHeader">
<summary>
<para>The test point belongs to a resource header.
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.Drawing.SchedulerHitTest.Ruler">
<summary>
<para>The test point belongs to a time ruler.
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.Drawing.SchedulerHitTest.ScrollMoreButton">
<summary>
<para>The test point belongs to a Scroll MoreButton.
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.Drawing.SchedulerHitTest.SelectionBar">
<summary>
<para>The test point belongs to the selection bar in the Timeline View.
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.Drawing.SchedulerHitTest.SelectionBarCell">
<summary>
<para>The test point belongs to a single cell of the selection bar in the Timeline View.
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.Drawing.SchedulerHitTest.SingleWeek">
<summary>
<para>The test point belongs to a single week.
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.Drawing.SchedulerHitTest.Timeline">
<summary>
<para>The test point belongs to the timeline bar.
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.Drawing.SchedulerHitTest.TimeScaleHeader">
<summary>
<para>The test point belongs to the time scale header in the Timeline View.
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.Drawing.SchedulerHitTest.Undefined">
<summary>
<para>An object under the test point cannot be determined.
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.Drawing.SchedulerHitTest.UpperLeftCorner">
<summary>
<para>The test point belongs to the top-left corner in the Day View.
</para>
</summary>
</member>
<member name="T:DevExpress.XtraScheduler.RemindersFormDefaultAction">
<summary>
<para>Lists the types of default actions which can be applied after the <b>Reminders</b> form is closed.
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.RemindersFormDefaultAction.Custom">
<summary>
<para>After the <b>Reminders</b> form is closed, whether the reminders are snoozed or dismissed is determined manually in the <see cref="E:DevExpress.XtraScheduler.SchedulerControl.RemindersFormDefaultAction"/> or <see cref="E:DevExpress.Xpf.Scheduler.SchedulerControl.RemindersFormDefaultAction"/> event handler.
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.RemindersFormDefaultAction.DismissAll">
<summary>
<para>After the <b>Reminders</b> form is closed, all reminders will be dismissed.
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.RemindersFormDefaultAction.SnoozeAll">
<summary>
<para>After the <b>Reminders</b> form is closed, all reminders will be snoozed.
</para>
</summary>
</member>
<member name="T:DevExpress.XtraScheduler.ResourceCustomFieldMappingCollection">
<summary>
<para>Represents a collection of mappings of the custom properties of resources to appropriate data fields.
</para>
</summary>
</member>
<member name="M:DevExpress.XtraScheduler.ResourceCustomFieldMappingCollection.#ctor">
<summary>
<para>Initializes a new instance of the ResourceCustomFieldMappingCollection class with the default settings.
</para>
</summary>
</member>
<member name="M:DevExpress.XtraScheduler.ResourceCustomFieldMappingCollection.Add(DevExpress.XtraScheduler.ResourceCustomFieldMapping)">
<summary>
<para>Appends the specified <see cref="T:DevExpress.XtraScheduler.ResourceCustomFieldMapping"/> object to the storage's collection of custom fields mappings.
</para>
</summary>
<param name="mapping">
An <see cref="T:DevExpress.XtraScheduler.ResourceCustomFieldMapping"/> object to append to the collection.
</param>
<returns>An integer value indicating the position at which the new element was inserted.
</returns>
</member>
<member name="P:DevExpress.XtraScheduler.ResourceCustomFieldMappingCollection.Item(System.String)">
<summary>
<para>Provides access to individual items in the collection by their names.
</para>
</summary>
<param name="name">
A <see cref="T:System.String"/> value specifying the name of the custom field to get.
</param>
<value>A <see cref="T:DevExpress.XtraScheduler.ResourceCustomFieldMapping"/> object which represents the custom field mapping with the specified name.
</value>
</member>
<member name="P:DevExpress.XtraScheduler.ResourceCustomFieldMappingCollection.Item(System.Int32)">
<summary>
<para>Provides indexed access to individual items in the collection.
</para>
</summary>
<param name="index">
A zero-based integer specifying the desired item's position within the collection. If it's negative or exceeds the last available index, an exception is raised.
</param>
<value>A <see cref="T:DevExpress.XtraScheduler.ResourceCustomFieldMapping"/> object which represents the custom field mapping at the specified position.
</value>
</member>
<member name="T:DevExpress.XtraScheduler.RemindersFormDefaultActionEventHandler">
<summary>
<para>Represents a method that will handle the <see cref="E:DevExpress.XtraScheduler.SchedulerControl.RemindersFormDefaultAction"/> event.
</para>
</summary>
</member>
<member name="M:DevExpress.XtraScheduler.RemindersFormDefaultActionEventHandler.Invoke(System.Object,DevExpress.XtraScheduler.RemindersFormDefaultActionEventArgs)">
<summary>
<para>Represents a method that will handle the <see cref="E:DevExpress.XtraScheduler.SchedulerControl.RemindersFormDefaultAction"/> event.
</para>
</summary>
<param name="sender">
The event source. This parameter identifies the <see cref="T:DevExpress.XtraScheduler.SchedulerControl"/> which raised the event.
</param>
<param name="e">
A <see cref="T:DevExpress.XtraScheduler.RemindersFormDefaultActionEventArgs"/> object which contains event data.
</param>
</member>
<member name="T:DevExpress.XtraScheduler.RemindersFormDefaultActionEventArgs">
<summary>
<para>Provides data for the <see cref="E:DevExpress.XtraScheduler.SchedulerControl.RemindersFormDefaultAction"/> event.
</para>
</summary>
</member>
<member name="M:DevExpress.XtraScheduler.RemindersFormDefaultActionEventArgs.#ctor(DevExpress.XtraScheduler.ReminderAlertNotificationCollection)">
<summary>
<para>Initializes a new instance of the RemindersFormDefaultActionEventArgs class with the specified settings.
</para>
</summary>
<param name="alertNotifications">
A <see cref="T:DevExpress.XtraScheduler.ReminderAlertNotificationCollection"/> value which represents the event's collection of reminder alerts. This value is assigned to the <see cref="P:DevExpress.XtraScheduler.ReminderEventArgs.AlertNotifications"/> property.
</param>
</member>
<member name="P:DevExpress.XtraScheduler.RemindersFormDefaultActionEventArgs.Cancel">
<summary>
<para>Gets or sets whether the <b>Reminders Form</b> closing is canceled or not.
</para>
</summary>
<value><b>true</b> if the form closing is cancelled; otherwise, <b>false</b>.
</value>
</member>
<member name="P:DevExpress.XtraScheduler.RemindersFormDefaultActionEventArgs.Handled">
<summary>
<para>Gets or sets whether an event was handled, if it was handled the default actions are not required.
</para>
</summary>
<value><b>true</b> if no default processing of the form's reminders is required; otherwise, <b>false</b>.
</value>
</member>
<member name="T:DevExpress.XtraScheduler.AppointmentOperationEventHandler">
<summary>
<para>Represents a method that will handle the <b>AllowAppointment~</b> events of the <see cref="T:DevExpress.XtraScheduler.SchedulerControl"/>.
</para>
</summary>
</member>
<member name="M:DevExpress.XtraScheduler.AppointmentOperationEventHandler.Invoke(System.Object,DevExpress.XtraScheduler.AppointmentOperationEventArgs)">
<summary>
<para>Represents a method that will handle the <b>AllowAppointment</b> events of the <see cref="T:DevExpress.XtraScheduler.SchedulerControl"/>.
</para>
</summary>
<param name="sender">
The event source. This parameter identifies the <see cref="T:DevExpress.XtraScheduler.SchedulerControl"/> which raised the event.
</param>
<param name="e">
An <see cref="T:DevExpress.XtraScheduler.AppointmentOperationEventArgs"/> object which contains event data.
</param>
</member>
<member name="T:DevExpress.XtraScheduler.AppointmentOperationEventArgs">
<summary>
<para>Provides data for the <b>AllowAppointment</b> events of the <see cref="T:DevExpress.XtraScheduler.SchedulerControl"/>.
</para>
</summary>
</member>
<member name="M:DevExpress.XtraScheduler.AppointmentOperationEventArgs.#ctor(DevExpress.XtraScheduler.Appointment)">
<summary>
<para>Initializes a new instance of the AppointmentOperationEventArgs class with the specified appointment.
</para>
</summary>
<param name="apt">
An <see cref="T:DevExpress.XtraScheduler.Appointment"/> value which represents the event's appointment. This value is assigned to the <see cref="P:DevExpress.XtraScheduler.AppointmentEventArgs.Appointment"/> property.
</param>
</member>
<member name="P:DevExpress.XtraScheduler.AppointmentOperationEventArgs.Allow">
<summary>
<para>Gets or sets a value indicating whether an end-user is allowed to perform a particular action.
</para>
</summary>
<value><b>true</b> if an action is allowed; otherwise, <b>false</b>.
</value>
</member>
<member name="P:DevExpress.XtraScheduler.AppointmentOperationEventArgs.Recurring">
<summary>
<para>Gets or sets a value indicating if the appointment is recurring.
</para>
</summary>
<value><b>true</b> if the appointment is recurring; otherwise, <b>false</b>.
</value>
</member>
<member name="T:DevExpress.XtraScheduler.TimelineViewAppointmentDisplayOptions">
<summary>
<para>Provides options which define how appointments are displayed when the currently active view is the Timeline View.
</para>
</summary>
</member>
<member name="M:DevExpress.XtraScheduler.TimelineViewAppointmentDisplayOptions.#ctor">
<summary>
<para>Initializes a new instance of the TimelineViewAppointmentDisplayOptions class with default settings.
</para>
</summary>
</member>
<member name="P:DevExpress.XtraScheduler.TimelineViewAppointmentDisplayOptions.AppointmentInterspacing">
<summary>
<para>Gets or sets the vertical distance between appointments.
</para>
</summary>
<value>An integer, representing the vertical distance between appointments (in pixels).
</value>
</member>
<member name="T:DevExpress.XtraScheduler.Services.Implementation.AppointmentFormatStringService">
<summary>
<para>Provides a wrapper for using the <b>IAppointmentFormatStringService</b> interface, enabling you to change time formats used to display appointment start and end times, as well as the string indicating that an appointment extends beyond the visible area.
</para>
</summary>
</member>
<member name="M:DevExpress.XtraScheduler.Services.Implementation.AppointmentFormatStringService.#ctor">
<summary>
<para>Initializes a new instance of the AppointmentFormatStringService class with default settings.
</para>
</summary>
</member>
<member name="M:DevExpress.XtraScheduler.Services.Implementation.AppointmentFormatStringService.GetContinueItemEndFormat(DevExpress.XtraScheduler.Drawing.IAppointmentViewInfo)">
<summary>
<para>Override this method to change the format of the appointment continue item.
</para>
</summary>
<param name="aptViewInfo">
An object exposing the <see cref="T:DevExpress.XtraScheduler.Drawing.IAppointmentViewInfo"/> interface.
</param>
<returns>A format string.
</returns>
</member>
<member name="M:DevExpress.XtraScheduler.Services.Implementation.AppointmentFormatStringService.GetContinueItemStartFormat(DevExpress.XtraScheduler.Drawing.IAppointmentViewInfo)">
<summary>
<para>Override this method to change the format of the appointment continue item.
</para>
</summary>
<param name="aptViewInfo">
An object exposing the <see cref="T:DevExpress.XtraScheduler.Drawing.IAppointmentViewInfo"/> interface.
</param>
<returns>A format string.
</returns>
</member>
<member name="M:DevExpress.XtraScheduler.Services.Implementation.AppointmentFormatStringService.GetHorizontalAppointmentEndFormat(DevExpress.XtraScheduler.Drawing.IAppointmentViewInfo)">
<summary>
<para>Override this method to change the format of the appointment end time in the Timeline View.
</para>
</summary>
<param name="aptViewInfo">
An object exposing the <see cref="T:DevExpress.XtraScheduler.Drawing.IAppointmentViewInfo"/> interface.
</param>
<returns>A format string.
</returns>
</member>
<member name="M:DevExpress.XtraScheduler.Services.Implementation.AppointmentFormatStringService.GetHorizontalAppointmentStartFormat(DevExpress.XtraScheduler.Drawing.IAppointmentViewInfo)">
<summary>
<para>Override this method to change the format of the appointment start time in the Timeline View.
</para>
</summary>
<param name="aptViewInfo">
An object exposing the <see cref="T:DevExpress.XtraScheduler.Drawing.IAppointmentViewInfo"/> interface.
</param>
<returns>A format string.
</returns>
</member>
<member name="M:DevExpress.XtraScheduler.Services.Implementation.AppointmentFormatStringService.GetVerticalAppointmentEndFormat(DevExpress.XtraScheduler.Drawing.IAppointmentViewInfo)">
<summary>
<para>Override this method to change the format of the appointment end time in the views that use vertical appointments, such as the Day view.
</para>
</summary>
<param name="aptViewInfo">
An object exposing the <see cref="T:DevExpress.XtraScheduler.Drawing.IAppointmentViewInfo"/> interface.
</param>
<returns>A format string.
</returns>
</member>
<member name="M:DevExpress.XtraScheduler.Services.Implementation.AppointmentFormatStringService.GetVerticalAppointmentStartFormat(DevExpress.XtraScheduler.Drawing.IAppointmentViewInfo)">
<summary>
<para>Override this method to change the format of the appointment start time in the views that use vertical appointments, such as the Day view.
</para>
</summary>
<param name="aptViewInfo">
An object exposing the <see cref="T:DevExpress.XtraScheduler.Drawing.IAppointmentViewInfo"/> interface.
</param>
<returns>A format string.
</returns>
</member>
<member name="T:DevExpress.XtraScheduler.Services.Implementation.TimeRulerFormatStringService">
<summary>
<para>Provides a wrapper for using the <b>ITimeRulerFormatStringService</b> interface, enabling you to change captions displayed in the <b>Time Ruler</b>.
</para>
</summary>
</member>
<member name="M:DevExpress.XtraScheduler.Services.Implementation.TimeRulerFormatStringService.#ctor">
<summary>
<para>Initializes a new instance of the TimeRulerFormatStringService class with default settings.
</para>
</summary>
</member>
<member name="M:DevExpress.XtraScheduler.Services.Implementation.TimeRulerFormatStringService.GetHalfDayHourFormat(DevExpress.XtraScheduler.TimeRuler)">
<summary>
<para>Override this method to change the format of the half-day hour caption at the <b>Time Ruler</b>.
</para>
</summary>
<param name="ruler">
A <see cref="T:DevExpress.XtraScheduler.TimeRuler"/> object.
</param>
<returns>A format string.
</returns>
</member>
<member name="M:DevExpress.XtraScheduler.Services.Implementation.TimeRulerFormatStringService.GetHourFormat(DevExpress.XtraScheduler.TimeRuler)">
<summary>
<para>Override this method to change the format of the hour captions displayed at the <b>Time Ruler</b>.
</para>
</summary>
<param name="ruler">
A <see cref="T:DevExpress.XtraScheduler.TimeRuler"/> object.
</param>
<returns>A format string.
</returns>
</member>
<member name="M:DevExpress.XtraScheduler.Services.Implementation.TimeRulerFormatStringService.GetHourOnlyFormat(DevExpress.XtraScheduler.TimeRuler)">
<summary>
<para>Override this method to change the format of the individual hour captions displayed at the <b>Time Ruler</b>.
</para>
</summary>
<param name="ruler">
A <see cref="T:DevExpress.XtraScheduler.TimeRuler"/> object.
</param>
<returns>A format string.
</returns>
</member>
<member name="M:DevExpress.XtraScheduler.Services.Implementation.TimeRulerFormatStringService.GetMinutesOnlyFormat(DevExpress.XtraScheduler.TimeRuler)">
<summary>
<para>Override this method to change the format of the individual minute captions displayed at the <b>Time Ruler</b>.
</para>
</summary>
<param name="ruler">
A <see cref="T:DevExpress.XtraScheduler.TimeRuler"/> object.
</param>
<returns>A format string.
</returns>
</member>
<member name="M:DevExpress.XtraScheduler.Services.Implementation.TimeRulerFormatStringService.GetTimeDesignatorOnlyFormat(DevExpress.XtraScheduler.TimeRuler)">
<summary>
<para>Override this method to change the format of the time designator displayed at the <b>Time Ruler</b>.
</para>
</summary>
<param name="ruler">
A <see cref="T:DevExpress.XtraScheduler.TimeRuler"/> object.
</param>
<returns>A format string.
</returns>
</member>
<member name="T:DevExpress.XtraScheduler.Reporting.SmartSyncOptions">
<summary>
<para>Contains options specific for the SmartSync Printing feature.
</para>
</summary>
</member>
<member name="M:DevExpress.XtraScheduler.Reporting.SmartSyncOptions.#ctor">
<summary>
<para>Initializes a new instance of the SmartSyncOptions class with default settings.
</para>
</summary>
</member>
<member name="M:DevExpress.XtraScheduler.Reporting.SmartSyncOptions.Assign(DevExpress.Utils.Controls.BaseOptions)">
<summary>
<para>Copies all the settings from the SmartSyncOptions object passed as a parameter.
</para>
</summary>
<param name="options">
A SmartSyncOptions instance whose elements are copied to the current object.
</param>
</member>
<member name="P:DevExpress.XtraScheduler.Reporting.SmartSyncOptions.GroupType">
<summary>
<para>Gets or sets the grouping used for creating report pages if the <see cref="P:DevExpress.XtraScheduler.Reporting.SchedulerPrintAdapter.EnableSmartSync"/> option is switched on.
</para>
</summary>
<value>A <see cref="T:DevExpress.XtraScheduler.SchedulerGroupType"/> enumeration member specifying the grouping for the SmartSync printing.
</value>
</member>
<member name="T:DevExpress.XtraScheduler.SchedulerUnhandledExceptionEventArgs">
<summary>
<para>Provides data for the <see cref="E:DevExpress.Web.ASPxScheduler.ASPxScheduler.UnhandledException"/> event.
</para>
</summary>
</member>
<member name="M:DevExpress.XtraScheduler.SchedulerUnhandledExceptionEventArgs.#ctor(System.Exception)">
<summary>
<para>Initializes a new instance of the SchedulerUnhandledExceptionEventArgs class with the specified exception.
</para>
</summary>
<param name="e">
An <see cref="T:System.Exception"/> object representing the exception which caused an event.
</param>
</member>
<member name="P:DevExpress.XtraScheduler.SchedulerUnhandledExceptionEventArgs.Exception">
<summary>
<para>Gets the exception which is not handled by the Scheduler control.
</para>
</summary>
<value>An <see cref="T:System.Exception"/> object representing an exception which caused the event.
</value>
</member>
<member name="P:DevExpress.XtraScheduler.SchedulerUnhandledExceptionEventArgs.Handled">
<summary>
<para>Gets or sets whether an event was handled. If it was handled, the exception is not propagated.
</para>
</summary>
<value><b>true</b> if an exception is propagated; otherwise, <b>false</b>.
</value>
</member>
<member name="T:DevExpress.XtraScheduler.TimeOfDayIntervalCollection">
<summary>
<para>Represents a collection of time intervals for a single day.
</para>
</summary>
</member>
<member name="M:DevExpress.XtraScheduler.TimeOfDayIntervalCollection.#ctor">
<summary>
<para>Initializes a new instance of the TimeOfDayIntervalCollection class with default settings.
</para>
</summary>
</member>
<member name="P:DevExpress.XtraScheduler.TimeOfDayIntervalCollection.Duration">
<summary>
<para>Gets the duration of the time interval starting at the earliest work time and finishing at the latest work time in a collection.
</para>
</summary>
<value>A <see cref="T:System.TimeSpan"/> object representing a time interval.
</value>
</member>
<member name="P:DevExpress.XtraScheduler.TimeOfDayIntervalCollection.End">
<summary>
<para>Gets the end of the last work time interval in a collection.
</para>
</summary>
<value>A <see cref="T:System.TimeSpan"/> object representing the latest work time.
</value>
</member>
<member name="P:DevExpress.XtraScheduler.TimeOfDayIntervalCollection.Start">
<summary>
<para>Gets the start of the first work time interval in a collection.
</para>
</summary>
<value>A <see cref="T:System.TimeSpan"/> object representing the earliest work time.
</value>
</member>
<member name="T:DevExpress.XtraScheduler.IAppointmentFactory">
<summary>
<para>Provides methods for creating appointments.
</para>
</summary>
</member>
<member name="M:DevExpress.XtraScheduler.IAppointmentFactory.CreateAppointment(DevExpress.XtraScheduler.AppointmentType)">
<summary>
<para>If implemented by a class, creates an appointment of the specified type.
</para>
</summary>
<param name="type">
An <see cref="T:DevExpress.XtraScheduler.AppointmentType"/> enumeration value specifying the type of the created appointment.
</param>
<returns>An <see cref="T:DevExpress.XtraScheduler.Appointment"/> object which represents an appointment of the specified type.
</returns>
</member>
<member name="T:DevExpress.XtraScheduler.MappingCollection">
<summary>
<para>Represents a collection of mappings of the persistent properties of persistent objects (appointments or resources) to appropriate data fields.
</para>
</summary>
</member>
<member name="M:DevExpress.XtraScheduler.MappingCollection.#ctor">
<summary>
<para>Initializes a new instance of the MappingCollection class with default settings.
</para>
</summary>
</member>
<member name="T:DevExpress.XtraScheduler.MappingBase">
<summary>
<para>Serves as the base class for classes that provide mapping of the properties of persistent objects (appointments or resources) to appropriate data fields.
</para>
</summary>
</member>
<member name="M:DevExpress.XtraScheduler.MappingBase.GetValue(DevExpress.XtraScheduler.PersistentObject)">
<summary>
<para>Returns a value from the specified persistent object corresponding to the field to which it is mapped.
</para>
</summary>
<param name="obj">
A <see cref="T:DevExpress.XtraScheduler.PersistentObject"/> that represents the object which is bound to data using the current mapping.
</param>
<returns>A <see cref="T:System.Object"/> that represents the data field's value.
</returns>
</member>
<member name="P:DevExpress.XtraScheduler.MappingBase.Member">
<summary>
<para>Gets or sets the name of the member in a datasource which should be mapped to the specific property.
</para>
</summary>
<value>A <see cref="T:System.String"/> value which represents the data member to be mapped.
</value>
</member>
<member name="P:DevExpress.XtraScheduler.MappingBase.Name">
<summary>
<para>Gets or sets the name of the property which should be mapped to a specific member in a datasource.
</para>
</summary>
<value>A <see cref="T:System.String"/> value which represents the property name to be mapped.
</value>
</member>
<member name="M:DevExpress.XtraScheduler.MappingBase.SetValue(DevExpress.XtraScheduler.PersistentObject,System.Object)">
<summary>
<para>Assigns the value of the mapped data field to the specified persistent object.
</para>
</summary>
<param name="obj">
A <see cref="T:DevExpress.XtraScheduler.PersistentObject"/> that represents the object which is bound to data using the current mapping.
</param>
<param name="val">
A <see cref="T:System.Object"/> that specifies the required data field's value.
</param>
</member>
<member name="P:DevExpress.XtraScheduler.MappingBase.Type">
<summary>
<para>Gets the mapping's type.
</para>
</summary>
<value>A <see cref="T:System.Type"/> object which represents the mapping's type.
</value>
</member>
<member name="T:DevExpress.XtraScheduler.AppointmentEventHandler">
<summary>
<para>Represents a method that will handle the <see cref="E:DevExpress.XtraScheduler.SchedulerControl.InitNewAppointment"/> event.
</para>
</summary>
</member>
<member name="M:DevExpress.XtraScheduler.AppointmentEventHandler.Invoke(System.Object,DevExpress.XtraScheduler.AppointmentEventArgs)">
<summary>
<para>Represents a method that will handle the <see cref="E:DevExpress.XtraScheduler.SchedulerControl.InitNewAppointment"/> event.
</para>
</summary>
<param name="sender">
The event source. This parameter identifies the <see cref="T:DevExpress.XtraScheduler.SchedulerControl"/> which raised the event.
</param>
<param name="e">
An <see cref="T:DevExpress.XtraScheduler.AppointmentEventArgs"/> object which contains event data.
</param>
</member>
<member name="T:DevExpress.XtraScheduler.AppointmentCustomFieldMappingCollection">
<summary>
<para>Represents a collection of mappings of the custom properties of appointments to appropriate data fields.
</para>
</summary>
</member>
<member name="M:DevExpress.XtraScheduler.AppointmentCustomFieldMappingCollection.#ctor">
<summary>
<para>Initializes a new instance of the AppointmentCustomFieldMappingCollection class with the default settings.
</para>
</summary>
</member>
<member name="M:DevExpress.XtraScheduler.AppointmentCustomFieldMappingCollection.Add(DevExpress.XtraScheduler.AppointmentCustomFieldMapping)">
<summary>
<para>Appends the specified <see cref="T:DevExpress.XtraScheduler.AppointmentCustomFieldMapping"/> object to the storage's collection of custom fields mappings.
</para>
</summary>
<param name="mapping">
An <see cref="T:DevExpress.XtraScheduler.AppointmentCustomFieldMapping"/> object to append to the collection.
</param>
<returns>An integer value indicating the position at which the new element was inserted.
</returns>
</member>
<member name="P:DevExpress.XtraScheduler.AppointmentCustomFieldMappingCollection.Item(System.String)">
<summary>
<para>Provides access to individual items in the collection by their names.
</para>
</summary>
<param name="name">
A <see cref="T:System.String"/> value specifying the name of the custom field to get.
</param>
<value>An <see cref="T:DevExpress.XtraScheduler.AppointmentCustomFieldMapping"/> object which represents the custom field mapping with the specified name.
</value>
</member>
<member name="P:DevExpress.XtraScheduler.AppointmentCustomFieldMappingCollection.Item(System.Int32)">
<summary>
<para>Provides indexed access to individual items in the collection.
</para>
</summary>
<param name="index">
A zero-based integer specifying the desired item's position within the collection. If it's negative or exceeds the last available index, an exception is raised.
</param>
<value>An <see cref="T:DevExpress.XtraScheduler.AppointmentCustomFieldMapping"/> object which represents the custom field mapping at the specified position.
</value>
</member>
<member name="T:DevExpress.XtraScheduler.AppointmentCustomFieldMapping">
<summary>
<para>Represents a mapping of a custom property of an appointment to an appropriate data field.
</para>
</summary>
</member>
<member name="M:DevExpress.XtraScheduler.AppointmentCustomFieldMapping.#ctor">
<summary>
<para>Initializes a new instance of the AppointmentCustomFieldMapping class with default settings.
</para>
</summary>
</member>
<member name="M:DevExpress.XtraScheduler.AppointmentCustomFieldMapping.#ctor(System.String,System.String)">
<summary>
<para>Initializes a new instance of the AppointmentCustomFieldMapping class with the specified name and member.
</para>
</summary>
<param name="name">
A <see cref="T:System.String"/> value that specifies the name of the custom field. This value is assigned to the <see cref="P:DevExpress.XtraScheduler.CustomFieldMappingBase`1.Name"/> property.
</param>
<param name="member">
A <see cref="T:System.String"/> value that specifies the member value of the custom field mapping (the name of the field in the database). This value is assigned to the <see cref="P:DevExpress.XtraScheduler.CustomFieldMappingBase`1.Member"/> property.
</param>
</member>
<member name="M:DevExpress.XtraScheduler.AppointmentCustomFieldMapping.#ctor(System.String,System.String,DevExpress.XtraScheduler.FieldValueType)">
<summary>
<para>Initializes a new instance of the AppointmentCustomFieldMapping class with the specified name, member and value type.
</para>
</summary>
<param name="name">
A <see cref="T:System.String"/> value that specifies the name of the custom field. This value is assigned to the <see cref="P:DevExpress.XtraScheduler.CustomFieldMappingBase`1.Name"/> property.
</param>
<param name="member">
A <see cref="T:System.String"/> value that specifies the member value of the custom field mapping. This value is assigned to the <see cref="P:DevExpress.XtraScheduler.CustomFieldMappingBase`1.Member"/> property.
</param>
<param name="valueType">
A <see cref="T:DevExpress.XtraScheduler.FieldValueType"/> enumeration value, representing one of the standard value types.
</param>
</member>
<member name="P:DevExpress.XtraScheduler.AppointmentCustomFieldMapping.Member">
<summary>
<para>Gets or sets the name of the field in a data source which should be mapped to a custom property of an appointment.
</para>
</summary>
<value>A <see cref="T:System.String"/> value which represents the name of the data field to be mapped.
</value>
</member>
<member name="T:DevExpress.XtraScheduler.WeekOfMonth">
<summary>
<para>Lists the week in a month in which the event will occur.
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.WeekOfMonth.First">
<summary>
<para>The recurring event will occur once a month, on the specified day or days of the <b>first</b> week in the month.
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.WeekOfMonth.Fourth">
<summary>
<para>The recurring event will occur once a month, on the specified day or days of the <b>fourth</b> week in the month.
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.WeekOfMonth.Last">
<summary>
<para>The recurring event will occur once a month, on the specified day or days of the <b>last</b> week in the month.
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.WeekOfMonth.None">
<summary>
<para>There isn't any recurrence rule based upon the weeks in a month.
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.WeekOfMonth.Second">
<summary>
<para>The recurring event will occur once a month, on the specified day or days of the <b>second</b> week in the month.
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.WeekOfMonth.Third">
<summary>
<para>The recurring event will occur once a month, on the specified day or days of the <b>third</b> week in the month.
</para>
</summary>
</member>
<member name="T:DevExpress.XtraScheduler.UserInterfaceObject">
<summary>
<para>Represents a base class for different user interface objects.
</para>
</summary>
</member>
<member name="M:DevExpress.XtraScheduler.UserInterfaceObject.#ctor(System.String)">
<summary>
<para>Initializes a new instance of the UserInterfaceObject class with the specified display name.
</para>
</summary>
<param name="displayName">
A <see cref="T:System.String"/> value which represents the display name of the object. This value is assigned to the <see cref="P:DevExpress.XtraScheduler.UserInterfaceObject.DisplayName"/> property.
</param>
</member>
<member name="M:DevExpress.XtraScheduler.UserInterfaceObject.#ctor(System.Drawing.Color,System.String,System.String)">
<summary>
<para>Initializes a new instance of the UserInterfaceObject class with the specified color, display name and menu caption.
</para>
</summary>
<param name="color">
A <see cref="T:System.Drawing.Color"/> value that specifies the color of the object. This value is assigned to the <see cref="P:DevExpress.XtraScheduler.UserInterfaceObject.Color"/> property.
</param>
<param name="displayName">
A <see cref="T:System.String"/> value which represents the display name of the object. This value is assigned to the <see cref="P:DevExpress.XtraScheduler.UserInterfaceObject.DisplayName"/> property.
</param>
<param name="menuCaption">
A <see cref="T:System.String"/> value which represents the menu caption of the object. This value is assigned to the <see cref="P:DevExpress.XtraScheduler.UserInterfaceObject.MenuCaption"/> property.
</param>
</member>
<member name="M:DevExpress.XtraScheduler.UserInterfaceObject.#ctor(System.String,System.String)">
<summary>
<para>Initializes a new instance of the UserInterfaceObject class with the specified display name and menu caption.
</para>
</summary>
<param name="displayName">
A <see cref="T:System.String"/> value which represents the display name of the object. This value is assigned to the <see cref="P:DevExpress.XtraScheduler.UserInterfaceObject.DisplayName"/> property.
</param>
<param name="menuCaption">
A <see cref="T:System.String"/> value which represents the menu caption of the object. This value is assigned to the <see cref="P:DevExpress.XtraScheduler.UserInterfaceObject.MenuCaption"/> property.
</param>
</member>
<member name="P:DevExpress.XtraScheduler.UserInterfaceObject.Color">
<summary>
<para>Gets or sets the color of the user interface object.
</para>
</summary>
<value>A <see cref="T:System.Drawing.Color"/> value which specifies the object's color.
</value>
</member>
<member name="P:DevExpress.XtraScheduler.UserInterfaceObject.DisplayName">
<summary>
<para>Gets or sets the text which identifies an element.
</para>
</summary>
<value>A <see cref="T:System.String"/> value which identifies an element.
</value>
</member>
<member name="M:DevExpress.XtraScheduler.UserInterfaceObject.Dispose">
<summary>
<para>Disposes of the UserInterfaceObject object.
</para>
</summary>
</member>
<member name="P:DevExpress.XtraScheduler.UserInterfaceObject.MenuCaption">
<summary>
<para>Gets or sets the element's menu caption.
</para>
</summary>
<value>A <see cref="T:System.String"/> value which specifies the element's menu caption.
</value>
</member>
<member name="M:DevExpress.XtraScheduler.UserInterfaceObject.ToString">
<summary>
<para>Returns the element's textual representation.
</para>
</summary>
<returns>A <see cref="T:System.String"/> value that is the textual representation of the current element.
</returns>
</member>
<member name="T:DevExpress.XtraScheduler.CustomFieldCollection">
<summary>
<para>Represents a collection of custom fields bound to a scheduler's storage.
</para>
</summary>
</member>
<member name="M:DevExpress.XtraScheduler.CustomFieldCollection.#ctor">
<summary>
<para>Initializes a new instance of the CustomFieldCollection class with the default settings.
</para>
</summary>
</member>
<member name="M:DevExpress.XtraScheduler.CustomFieldCollection.BeginUpdate">
<summary>
<para>Locks the CustomFieldCollection, preventing change notifications (and visual updates) from being raised by the object until the <b>EndUpdate</b> or <b>CancelUpdate</b> method is called.
</para>
</summary>
</member>
<member name="M:DevExpress.XtraScheduler.CustomFieldCollection.CancelUpdate">
<summary>
<para>Unlocks the CustomFieldCollection object after it has been locked by the <b>BeginUpdate</b> method, without causing an immediate visual update.
</para>
</summary>
</member>
<member name="M:DevExpress.XtraScheduler.CustomFieldCollection.Clear">
<summary>
<para>Removes all items from the collection.
</para>
</summary>
</member>
<member name="P:DevExpress.XtraScheduler.CustomFieldCollection.Count">
<summary>
<para>Gets the number of elements contained in a collection.
</para>
</summary>
<value>An integer representing the number of elements in a collection.
</value>
</member>
<member name="M:DevExpress.XtraScheduler.CustomFieldCollection.EndUpdate">
<summary>
<para>Unlocks the CustomFieldCollection object after a call to the <b>BeginUpdate</b> method and causes an immediate visual update.
</para>
</summary>
</member>
<member name="M:DevExpress.XtraScheduler.CustomFieldCollection.GetEnumerator">
<summary>
<para>Returns an enumerator that iterates through the collection.
</para>
</summary>
<returns>A <b>System.Collections.Generic.IEnumerator </b> object that can be used to iterate through the collection.
</returns>
</member>
<member name="P:DevExpress.XtraScheduler.CustomFieldCollection.IsUpdateLocked">
<summary>
<para>Gets whether the collection has been locked for updating.
</para>
</summary>
<value><b>true</b> if the collection is locked; otherwise, <b>false</b>.
</value>
</member>
<member name="P:DevExpress.XtraScheduler.CustomFieldCollection.Item(System.String)">
<summary>
<para>Gets the value stored for the custom field specified by the custom field name.
</para>
</summary>
<param name="name">
A <see cref="T:System.String"/> value specifying the name of the custom field to get.
</param>
<value>A <see cref="T:System.Object"/> which represents the value of the custom field with the specified name.
</value>
</member>
<member name="P:DevExpress.XtraScheduler.CustomFieldCollection.Item(System.Int32)">
<summary>
<para>Provides indexed access to individual items in the collection.
</para>
</summary>
<param name="index">
A zero-based integer specifying the desired item's position within the collection. If it's negative or exceeds the last available index, an exception is raised.
</param>
<value>A <see cref="T:System.Object"/> which represents the value of the custom field at the specified position.
</value>
</member>
<member name="M:DevExpress.XtraScheduler.CustomFieldCollection.RemoveAt(System.Int32)">
<summary>
<para>Removes the <b>CustomFieldCollection</b> item at the specified index.
</para>
</summary>
<param name="index">
The zero-based index of the item to remove.
</param>
</member>
<member name="T:DevExpress.XtraScheduler.TimeZoneId">
<summary>
<para>Lists the available time zones.
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.TimeZoneId.Adelaide">
<summary>
<para>Cen. Australia Standard Time
</para>
</summary>
<returns>
</returns>
</member>
<member name="F:DevExpress.XtraScheduler.TimeZoneId.Afghanistan">
<summary>
<para>Afghanistan Standard Time
</para>
</summary>
<returns> [To be supplied] </returns>
</member>
<member name="F:DevExpress.XtraScheduler.TimeZoneId.Alaska">
<summary>
<para>Alaskan Standard Time
</para>
</summary>
<returns> [To be supplied] </returns>
</member>
<member name="F:DevExpress.XtraScheduler.TimeZoneId.Arab">
<summary>
<para>Arab Standard Time
</para>
</summary>
<returns> [To be supplied] </returns>
</member>
<member name="F:DevExpress.XtraScheduler.TimeZoneId.Arabian">
<summary>
<para>Arabian Standard Time
</para>
</summary>
<returns> [To be supplied] </returns>
</member>
<member name="F:DevExpress.XtraScheduler.TimeZoneId.Arabic">
<summary>
<para>Arabic Standard Time
</para>
</summary>
<returns> [To be supplied] </returns>
</member>
<member name="F:DevExpress.XtraScheduler.TimeZoneId.Argentina">
<summary>
<para>Argentina Standard Time
</para>
</summary>
<returns> [To be supplied] </returns>
</member>
<member name="F:DevExpress.XtraScheduler.TimeZoneId.Armenia">
<summary>
<para>Armenian Standard Time
</para>
</summary>
<returns> [To be supplied] </returns>
</member>
<member name="F:DevExpress.XtraScheduler.TimeZoneId.Atlantic">
<summary>
<para>Atlantic Standard Time
</para>
</summary>
<returns> [To be supplied] </returns>
</member>
<member name="F:DevExpress.XtraScheduler.TimeZoneId.Azerbaijan">
<summary>
<para>Azerbaijan Standard Time
</para>
</summary>
<returns> [To be supplied] </returns>
</member>
<member name="F:DevExpress.XtraScheduler.TimeZoneId.Azores">
<summary>
<para>Azores Standard Time
</para>
</summary>
<returns> [To be supplied] </returns>
</member>
<member name="F:DevExpress.XtraScheduler.TimeZoneId.Balkan">
<summary>
<para>GTB Standard Time
</para>
</summary>
<returns>
</returns>
</member>
<member name="F:DevExpress.XtraScheduler.TimeZoneId.Cairo">
<summary>
<para>Egypt Standard Time
</para>
</summary>
<returns> [To be supplied] </returns>
</member>
<member name="F:DevExpress.XtraScheduler.TimeZoneId.CapeVerde">
<summary>
<para>Cape Verde Standard Time
</para>
</summary>
<returns>
</returns>
</member>
<member name="F:DevExpress.XtraScheduler.TimeZoneId.Caucasus">
<summary>
<para>Caucasus Standard Time
</para>
</summary>
<returns>
</returns>
</member>
<member name="F:DevExpress.XtraScheduler.TimeZoneId.Central">
<summary>
<para>Central Standard Time
</para>
</summary>
<returns> [To be supplied] </returns>
</member>
<member name="F:DevExpress.XtraScheduler.TimeZoneId.CentralAmerica">
<summary>
<para>Central America Standard Time
</para>
</summary>
<returns> [To be supplied] </returns>
</member>
<member name="F:DevExpress.XtraScheduler.TimeZoneId.CentralAsia">
<summary>
<para>Central Asia Standard Time
</para>
</summary>
<returns> [To be supplied] </returns>
</member>
<member name="F:DevExpress.XtraScheduler.TimeZoneId.CentralAustralian">
<summary>
<para>AUS Central Standard Time
</para>
</summary>
<returns> [To be supplied] </returns>
</member>
<member name="F:DevExpress.XtraScheduler.TimeZoneId.CentralBrazilian">
<summary>
<para>Central Brazilian Standard Time
</para>
</summary>
<returns> [To be supplied] </returns>
</member>
<member name="F:DevExpress.XtraScheduler.TimeZoneId.CentralCanadian">
<summary>
<para>Canada Central Standard Time
</para>
</summary>
<returns> [To be supplied] </returns>
</member>
<member name="F:DevExpress.XtraScheduler.TimeZoneId.CentralEurope">
<summary>
<para>Central Europe Standard Time
</para>
</summary>
<returns> [To be supplied] </returns>
</member>
<member name="F:DevExpress.XtraScheduler.TimeZoneId.CentralEuropean">
<summary>
<para>Central European Standard Time
</para>
</summary>
<returns> [To be supplied] </returns>
</member>
<member name="F:DevExpress.XtraScheduler.TimeZoneId.CentralMexico">
<summary>
<para>Central Standard Time (Mexico)
</para>
</summary>
<returns> [To be supplied] </returns>
</member>
<member name="F:DevExpress.XtraScheduler.TimeZoneId.CentralPacific">
<summary>
<para>Central Pacific Standard Time
</para>
</summary>
<returns> [To be supplied] </returns>
</member>
<member name="F:DevExpress.XtraScheduler.TimeZoneId.China">
<summary>
<para>China Standard Time
</para>
</summary>
<returns> [To be supplied] </returns>
</member>
<member name="F:DevExpress.XtraScheduler.TimeZoneId.Custom">
<summary>
<para>Reserved for special purposes. Do not use this value in your application.
</para>
</summary>
<returns> [To be supplied] </returns>
</member>
<member name="F:DevExpress.XtraScheduler.TimeZoneId.Damascus">
<summary>
<para>Syria Standard Time
</para>
</summary>
<returns> [To be supplied] </returns>
</member>
<member name="F:DevExpress.XtraScheduler.TimeZoneId.DateLine">
<summary>
<para>Dateline Standard Time
</para>
</summary>
<returns> [To be supplied] </returns>
</member>
<member name="F:DevExpress.XtraScheduler.TimeZoneId.Eastern">
<summary>
<para>Eastern Standard Time
</para>
</summary>
<returns> [To be supplied] </returns>
</member>
<member name="F:DevExpress.XtraScheduler.TimeZoneId.EasternAfrica">
<summary>
<para>E. Africa Standard Time
</para>
</summary>
<returns> [To be supplied] </returns>
</member>
<member name="F:DevExpress.XtraScheduler.TimeZoneId.EasternAustralia">
<summary>
<para>E. Australia Standard Time
</para>
</summary>
<returns> [To be supplied] </returns>
</member>
<member name="F:DevExpress.XtraScheduler.TimeZoneId.EasternAustralian">
<summary>
<para>AUS Eastern Standard Time
</para>
</summary>
<returns> [To be supplied] </returns>
</member>
<member name="F:DevExpress.XtraScheduler.TimeZoneId.EasternEurope">
<summary>
<para>E. Europe Standard Time
</para>
</summary>
<returns> [To be supplied] </returns>
</member>
<member name="F:DevExpress.XtraScheduler.TimeZoneId.EasternSouthAmerica">
<summary>
<para>E. South America Standard Time
</para>
</summary>
<returns> [To be supplied] </returns>
</member>
<member name="F:DevExpress.XtraScheduler.TimeZoneId.Ekaterinburg">
<summary>
<para>Ekaterinburg Standard Time
</para>
</summary>
<returns> [To be supplied] </returns>
</member>
<member name="F:DevExpress.XtraScheduler.TimeZoneId.Fiji">
<summary>
<para>Fiji Standard Time
</para>
</summary>
<returns> [To be supplied] </returns>
</member>
<member name="F:DevExpress.XtraScheduler.TimeZoneId.Georgian">
<summary>
<para>Georgian Standard Time
</para>
</summary>
<returns> [To be supplied] </returns>
</member>
<member name="F:DevExpress.XtraScheduler.TimeZoneId.Greenland">
<summary>
<para>Greenland Standard Time
</para>
</summary>
<returns> [To be supplied] </returns>
</member>
<member name="F:DevExpress.XtraScheduler.TimeZoneId.Greenwich">
<summary>
<para>Greenwich Standard Time
</para>
</summary>
<returns> [To be supplied] </returns>
</member>
<member name="F:DevExpress.XtraScheduler.TimeZoneId.Hawaii">
<summary>
<para>Hawaiian Standard Time
</para>
</summary>
<returns> [To be supplied] </returns>
</member>
<member name="F:DevExpress.XtraScheduler.TimeZoneId.India">
<summary>
<para>India Standard Time
</para>
</summary>
<returns>
</returns>
</member>
<member name="F:DevExpress.XtraScheduler.TimeZoneId.Iran">
<summary>
<para>Iran Standard Time
</para>
</summary>
<returns>
</returns>
</member>
<member name="F:DevExpress.XtraScheduler.TimeZoneId.Israel">
<summary>
<para>Israel Standard Time
</para>
</summary>
<returns>
</returns>
</member>
<member name="F:DevExpress.XtraScheduler.TimeZoneId.Jordan">
<summary>
<para>Jordan Standard Time
</para>
</summary>
<returns>
</returns>
</member>
<member name="F:DevExpress.XtraScheduler.TimeZoneId.Kaliningrad">
<summary>
<para>Kaliningrad Standard Time
</para>
</summary>
<returns>
</returns>
</member>
<member name="F:DevExpress.XtraScheduler.TimeZoneId.Kamchatka">
<summary>
<para>Kamchatka Standard Time
</para>
</summary>
<returns>
</returns>
</member>
<member name="F:DevExpress.XtraScheduler.TimeZoneId.Korea">
<summary>
<para>Korea Standard Time
</para>
</summary>
<returns>
</returns>
</member>
<member name="F:DevExpress.XtraScheduler.TimeZoneId.Lisbon">
<summary>
<para>GMT Standard Time
</para>
</summary>
<returns>
</returns>
</member>
<member name="F:DevExpress.XtraScheduler.TimeZoneId.Mauritius">
<summary>
<para>Mauritius Standard Time
</para>
</summary>
<returns>
</returns>
</member>
<member name="F:DevExpress.XtraScheduler.TimeZoneId.Mexico">
<summary>
<para>Mexico Standard Time
</para>
</summary>
<returns>
</returns>
</member>
<member name="F:DevExpress.XtraScheduler.TimeZoneId.Mexico2">
<summary>
<para>Mexico Standard Time 2
</para>
</summary>
<returns>
</returns>
</member>
<member name="F:DevExpress.XtraScheduler.TimeZoneId.MidAtlantic">
<summary>
<para>Mid-Atlantic Standard Time
</para>
</summary>
<returns>
</returns>
</member>
<member name="F:DevExpress.XtraScheduler.TimeZoneId.MidEast">
<summary>
<para>Middle East Standard Time
</para>
</summary>
<returns>
</returns>
</member>
<member name="F:DevExpress.XtraScheduler.TimeZoneId.MidwayIsland">
<summary>
<para>Samoa Standard Time
</para>
</summary>
<returns>
</returns>
</member>
<member name="F:DevExpress.XtraScheduler.TimeZoneId.Montevideo">
<summary>
<para>Montevideo Standard Time
</para>
</summary>
<returns>
</returns>
</member>
<member name="F:DevExpress.XtraScheduler.TimeZoneId.Morocco">
<summary>
<para>Morocco Standard Time
</para>
</summary>
<returns>
</returns>
</member>
<member name="F:DevExpress.XtraScheduler.TimeZoneId.Mountain">
<summary>
<para>Mountain Standard Time
</para>
</summary>
<returns>
</returns>
</member>
<member name="F:DevExpress.XtraScheduler.TimeZoneId.MountainMexico">
<summary>
<para>Mountain Standard Time (Mexico)
</para>
</summary>
<returns>
</returns>
</member>
<member name="F:DevExpress.XtraScheduler.TimeZoneId.Myanmar">
<summary>
<para>Myanmar Standard Time
</para>
</summary>
<returns>
</returns>
</member>
<member name="F:DevExpress.XtraScheduler.TimeZoneId.Namibia">
<summary>
<para>Namibia Standard Time
</para>
</summary>
<returns>
</returns>
</member>
<member name="F:DevExpress.XtraScheduler.TimeZoneId.Nepal">
<summary>
<para>Nepal Standard Time
</para>
</summary>
<returns>
</returns>
</member>
<member name="F:DevExpress.XtraScheduler.TimeZoneId.Newfoundland">
<summary>
<para>Newfoundland Standard Time
</para>
</summary>
<returns>
</returns>
</member>
<member name="F:DevExpress.XtraScheduler.TimeZoneId.NewZealand">
<summary>
<para>New Zealand Standard Time
</para>
</summary>
<returns>
</returns>
</member>
<member name="F:DevExpress.XtraScheduler.TimeZoneId.NorthAsia">
<summary>
<para>North Asia Standard Time
</para>
</summary>
<returns>
</returns>
</member>
<member name="F:DevExpress.XtraScheduler.TimeZoneId.NorthAsiaEast">
<summary>
<para>North Asia East Standard Time
</para>
</summary>
<returns>
</returns>
</member>
<member name="F:DevExpress.XtraScheduler.TimeZoneId.NorthCentralAsia">
<summary>
<para>N. Central Asia Standard Time
</para>
</summary>
<returns>
</returns>
</member>
<member name="F:DevExpress.XtraScheduler.TimeZoneId.NorthEurope">
<summary>
<para>FLE Standard Time
</para>
</summary>
<returns>
</returns>
</member>
<member name="F:DevExpress.XtraScheduler.TimeZoneId.Pacific">
<summary>
<para>Pacific Standard Time
</para>
</summary>
<returns>
</returns>
</member>
<member name="F:DevExpress.XtraScheduler.TimeZoneId.PacificMexico">
<summary>
<para>Pacific Standard Time (Mexico)
</para>
</summary>
<returns>
</returns>
</member>
<member name="F:DevExpress.XtraScheduler.TimeZoneId.Pakistan">
<summary>
<para>Pakistan Standard Time
</para>
</summary>
<returns>
</returns>
</member>
<member name="F:DevExpress.XtraScheduler.TimeZoneId.Paraguay">
<summary>
<para>Paraguay Standard Time
</para>
</summary>
<returns>
</returns>
</member>
<member name="F:DevExpress.XtraScheduler.TimeZoneId.Romance">
<summary>
<para>Romance Standard Time
</para>
</summary>
<returns>
</returns>
</member>
<member name="F:DevExpress.XtraScheduler.TimeZoneId.Russian">
<summary>
<para>Russian Standard Time
</para>
</summary>
<returns>
</returns>
</member>
<member name="F:DevExpress.XtraScheduler.TimeZoneId.Salvador">
<summary>
<para>Bahia Standard Time
</para>
</summary>
<returns>
</returns>
</member>
<member name="F:DevExpress.XtraScheduler.TimeZoneId.Singapore">
<summary>
<para>Singapore Standard Time
</para>
</summary>
<returns>
</returns>
</member>
<member name="F:DevExpress.XtraScheduler.TimeZoneId.SouthAfrica">
<summary>
<para>South Africa Standard Time
</para>
</summary>
<returns>
</returns>
</member>
<member name="F:DevExpress.XtraScheduler.TimeZoneId.SouthAmericaEastern">
<summary>
<para>SA Eastern Standard Time
</para>
</summary>
<returns>
</returns>
</member>
<member name="F:DevExpress.XtraScheduler.TimeZoneId.SouthAmericaPacific">
<summary>
<para>SA Pacific Standard Time
</para>
</summary>
<returns>
</returns>
</member>
<member name="F:DevExpress.XtraScheduler.TimeZoneId.SouthAmericaWestern">
<summary>
<para>SA Western Standard Time
</para>
</summary>
<returns>
</returns>
</member>
<member name="F:DevExpress.XtraScheduler.TimeZoneId.SouthEasternAsia">
<summary>
<para>SE Asia Standard Time
</para>
</summary>
<returns>
</returns>
</member>
<member name="F:DevExpress.XtraScheduler.TimeZoneId.SouthPacific">
<summary>
<para>Pacific SA Standard Time
</para>
</summary>
<returns>
</returns>
</member>
<member name="F:DevExpress.XtraScheduler.TimeZoneId.SriLanka">
<summary>
<para>Sri Lanka Standard Time
</para>
</summary>
<returns>
</returns>
</member>
<member name="F:DevExpress.XtraScheduler.TimeZoneId.Taipei">
<summary>
<para>Taipei Standard Time
</para>
</summary>
<returns>
</returns>
</member>
<member name="F:DevExpress.XtraScheduler.TimeZoneId.Tasmania">
<summary>
<para>Tasmania Standard Time
</para>
</summary>
<returns>
</returns>
</member>
<member name="F:DevExpress.XtraScheduler.TimeZoneId.Tokyo">
<summary>
<para>Tokyo Standard Time
</para>
</summary>
<returns>
</returns>
</member>
<member name="F:DevExpress.XtraScheduler.TimeZoneId.Tonga">
<summary>
<para>Tonga Standard Time
</para>
</summary>
<returns>
</returns>
</member>
<member name="F:DevExpress.XtraScheduler.TimeZoneId.Ulaanbaatar">
<summary>
<para>Ulaanbaatar Standard Time
</para>
</summary>
<returns>
</returns>
</member>
<member name="F:DevExpress.XtraScheduler.TimeZoneId.USEastern">
<summary>
<para>US Eastern Standard Time
</para>
</summary>
<returns>
</returns>
</member>
<member name="F:DevExpress.XtraScheduler.TimeZoneId.USMountain">
<summary>
<para>US Mountain Standard Time
</para>
</summary>
<returns>
</returns>
</member>
<member name="F:DevExpress.XtraScheduler.TimeZoneId.UTC">
<summary>
<para>UTC
</para>
</summary>
<returns>
</returns>
</member>
<member name="F:DevExpress.XtraScheduler.TimeZoneId.Venezuela">
<summary>
<para>Venezuela Standard Time
</para>
</summary>
<returns>
</returns>
</member>
<member name="F:DevExpress.XtraScheduler.TimeZoneId.Vladivostok">
<summary>
<para>Vladivostok Standard Time
</para>
</summary>
<returns>
</returns>
</member>
<member name="F:DevExpress.XtraScheduler.TimeZoneId.WestAsia">
<summary>
<para>West Asia Standard Time
</para>
</summary>
<returns>
</returns>
</member>
<member name="F:DevExpress.XtraScheduler.TimeZoneId.WestAustralia">
<summary>
<para>W. Australia Standard Time
</para>
</summary>
<returns>
</returns>
</member>
<member name="F:DevExpress.XtraScheduler.TimeZoneId.WestCentralAfrica">
<summary>
<para>W. Central Africa Standard Time
</para>
</summary>
<returns>
</returns>
</member>
<member name="F:DevExpress.XtraScheduler.TimeZoneId.WestEurope">
<summary>
<para>W. Europe Standard Time
</para>
</summary>
<returns>
</returns>
</member>
<member name="F:DevExpress.XtraScheduler.TimeZoneId.WestPacific">
<summary>
<para>West Pacific Standard Time
</para>
</summary>
<returns>
</returns>
</member>
<member name="F:DevExpress.XtraScheduler.TimeZoneId.Yakutsk">
<summary>
<para>Yakutsk Standard Time
</para>
</summary>
<returns>
</returns>
</member>
<member name="T:DevExpress.XtraScheduler.SchedulerTimeZoneCollection">
<summary>
<para>Represents a time zone collection.
</para>
</summary>
</member>
<member name="M:DevExpress.XtraScheduler.SchedulerTimeZoneCollection.#ctor">
<summary>
<para>Initializes a new instance of the SchedulerTimeZoneCollection class with default settings.
</para>
</summary>
</member>
<member name="T:DevExpress.XtraScheduler.SchedulerTimeZone">
<summary>
<para>Represents a time zone.
</para>
</summary>
</member>
<member name="M:DevExpress.XtraScheduler.SchedulerTimeZone.#ctor">
<summary>
<para>Initializes a new instance of the SchedulerTimeZone class with default settings.
</para>
</summary>
</member>
<member name="M:DevExpress.XtraScheduler.SchedulerTimeZone.Clone">
<summary>
<para>Creates a copy of the current SchedulerTimeZone object.
</para>
</summary>
<returns>A SchedulerTimeZone object which is a copy of the current object.
</returns>
</member>
<member name="P:DevExpress.XtraScheduler.SchedulerTimeZone.DaylightBias">
<summary>
<para>Gets or sets the time offset used to calculate the UTC for the daylight saving time period for the current time zone.
</para>
</summary>
<value>A <see cref="T:System.TimeSpan"/> value that is the time offset.
</value>
</member>
<member name="P:DevExpress.XtraScheduler.SchedulerTimeZone.DaylightDate">
<summary>
<para>Gets or sets the date when daylight saving time starts and standard time ends.
</para>
</summary>
<value>A <see cref="T:System.DateTime"/> value specifying the date on which daylight saving time starts.
</value>
</member>
<member name="P:DevExpress.XtraScheduler.SchedulerTimeZone.DaylightName">
<summary>
<para>Gets the name of the daylight saving time zone.
</para>
</summary>
<value>A <see cref="T:System.String"/> representing the daylight saving time zone's name.
</value>
</member>
<member name="P:DevExpress.XtraScheduler.SchedulerTimeZone.DaylightZoneName">
<summary>
<para>Gets or sets the name of the time zone which will be used when the current date belongs to the daylight saving time period.
</para>
</summary>
<value>A <see cref="T:System.String"/> representing the daylight saving time zone's name.
</value>
</member>
<member name="P:DevExpress.XtraScheduler.SchedulerTimeZone.DisplayName">
<summary>
<para>Gets or sets the display name for this time zone.
</para>
</summary>
<value>A <see cref="T:System.String"/> value representing the display name for this time zone.
</value>
</member>
<member name="M:DevExpress.XtraScheduler.SchedulerTimeZone.Equals(System.Object)">
<summary>
<para>Determines whether the specified object is equal to the current SchedulerTimeZone instance.
</para>
</summary>
<param name="obj">
The object to compare with the current object.
</param>
<returns><b>true</b> if the specified object is equal to the current SchedulerTimeZone instance; otherwise <b>false</b>.
</returns>
</member>
<member name="M:DevExpress.XtraScheduler.SchedulerTimeZone.GetDaylightChanges(System.Int32)">
<summary>
<para>Returns the daylight saving time period for a particular year.
</para>
</summary>
<param name="year">
A <see cref="T:System.Globalization.DaylightTime"/> value specifying the year for which the dates of daylight saving time should be returned.
</param>
<returns>A <see cref="T:System.Globalization.DaylightTime"/> value containing the start and end date for daylight saving time in the year.
</returns>
</member>
<member name="M:DevExpress.XtraScheduler.SchedulerTimeZone.GetHashCode">
<summary>
<para>Gets the hash code (a number) that corresponds to the value of the current SchedulerTimeZone object.
</para>
</summary>
<returns>An integer value representing the hash code for the current object.
</returns>
</member>
<member name="M:DevExpress.XtraScheduler.SchedulerTimeZone.GetUtcOffset(System.DateTime,System.Globalization.DaylightTime)">
<summary>
<para>Returns the coordinated universal time (UTC) offset for the specified local time according to daylight saving time.
</para>
</summary>
<param name="time">
A <see cref="T:System.DateTime"/> value which specifies the local date and time.
</param>
<param name="daylightInterval">
A <see cref="T:System.Globalization.DaylightTime"/> value specifying the daylight interval. Use this parameter when it's necessary to specify a daylight interval which differs from the standard daylight interval for this <i>time</i>.
</param>
<returns>A <see cref="T:System.TimeSpan"/> value representing the UTC offset from <i>time</i>, measured in ticks.
</returns>
</member>
<member name="M:DevExpress.XtraScheduler.SchedulerTimeZone.GetUtcOffset(System.DateTime)">
<summary>
<para>Returns the coordinated universal time (UTC) offset for the specified local time.
</para>
</summary>
<param name="time">
A <see cref="T:System.DateTime"/> value specifying the local date and time.
</param>
<returns>A <see cref="T:System.TimeSpan"/> value representing the UTC offset from <i>time</i>, measured in ticks.
</returns>
</member>
<member name="P:DevExpress.XtraScheduler.SchedulerTimeZone.Id">
<summary>
<para>Gets or sets the string identifier of the time zone.
</para>
</summary>
<value>A string that uniquely identifies a particular time zone and corresponds to the System.TimeZoneInfo.Id property value.
</value>
</member>
<member name="P:DevExpress.XtraScheduler.SchedulerTimeZone.StandardBias">
<summary>
<para>Gets or sets the time offset for the standard time period.
</para>
</summary>
<value>A <see cref="T:System.TimeSpan"/> value representing the time offset.
</value>
</member>
<member name="P:DevExpress.XtraScheduler.SchedulerTimeZone.StandardDate">
<summary>
<para>Gets or sets the date on which standard time starts and daylight saving time ends.
</para>
</summary>
<value>A <see cref="T:System.DateTime"/> value specifying the date on which standard time starts.
</value>
</member>
<member name="P:DevExpress.XtraScheduler.SchedulerTimeZone.StandardName">
<summary>
<para>Gets the standard name of the time zone.
</para>
</summary>
<value>A <see cref="T:System.String"/> representing the time zone's standard name.
</value>
</member>
<member name="P:DevExpress.XtraScheduler.SchedulerTimeZone.StandardZoneName">
<summary>
<para>Gets or sets the name of the time zone which will be used when the current date belongs to the standard time period.
</para>
</summary>
<value>A <see cref="T:System.String"/> representing the standard time zone's name.
</value>
</member>
<member name="P:DevExpress.XtraScheduler.SchedulerTimeZone.UtcOffset">
<summary>
<para>Gets or sets the UTC offset for this time zone.
</para>
</summary>
<value>A <see cref="T:System.TimeSpan"/> value which represents the UTC offset for the time zone.
</value>
</member>
<member name="T:DevExpress.XtraScheduler.Drawing.AppointmentImageType">
<summary>
<para>Lists the types of appointment images available.
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.Drawing.AppointmentImageType.Custom">
<summary>
<para>Represents any custom image added to the <see cref="P:DevExpress.XtraScheduler.SchedulerControl.AppointmentImages"/> collection of a scheduler.
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.Drawing.AppointmentImageType.Recurrence">
<summary>
<para>Represents the image which indicates that the appointment is recurring.
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.Drawing.AppointmentImageType.RecurrenceException">
<summary>
<para>Represents the image which indicates that the recurring appointment has been changed (its <see cref="P:DevExpress.XtraScheduler.Appointment.Type"/> is set to <b>ChangedOccurrence</b>).
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.Drawing.AppointmentImageType.Reminder">
<summary>
<para>Represents the image which indicates that the appointment has a <see cref="T:DevExpress.XtraScheduler.Reminder"/>.
</para>
</summary>
</member>
<member name="T:DevExpress.XtraScheduler.MonthIntervalCollection">
<summary>
<para>Represents a collections that contain time intervals of a month duration.
</para>
</summary>
</member>
<member name="M:DevExpress.XtraScheduler.MonthIntervalCollection.#ctor">
<summary>
<para>Initializes a new instance of the MonthIntervalCollection class with default settings.
</para>
</summary>
</member>
<member name="T:DevExpress.XtraScheduler.ExchangeAppointmentEventHandler">
<summary>
<para>Represents a method that will handle the <see cref="E:DevExpress.XtraScheduler.Exchange.AppointmentExchanger.GetAppointmentForeignId"/> event.
</para>
</summary>
</member>
<member name="M:DevExpress.XtraScheduler.ExchangeAppointmentEventHandler.Invoke(System.Object,DevExpress.XtraScheduler.ExchangeAppointmentEventArgs)">
<summary>
<para>Represents a method that will handle the <see cref="E:DevExpress.XtraScheduler.Exchange.AppointmentExchanger.GetAppointmentForeignId"/> event.
</para>
</summary>
<param name="sender">
The event source.
</param>
<param name="e">
An <see cref="T:DevExpress.XtraScheduler.ExchangeAppointmentEventArgs"/> object which contains event data.
</param>
</member>
<member name="T:DevExpress.XtraScheduler.ExchangeAppointmentEventArgs">
<summary>
<para>Provides data for the <see cref="E:DevExpress.XtraScheduler.Exchange.AppointmentExchanger.GetAppointmentForeignId"/> event.
</para>
</summary>
</member>
<member name="M:DevExpress.XtraScheduler.ExchangeAppointmentEventArgs.#ctor(DevExpress.XtraScheduler.Appointment)">
<summary>
<para>Initializes a new instance of the ExchangeAppointmentEventArgs class with the specified settings.
</para>
</summary>
<param name="apt">
An <see cref="T:DevExpress.XtraScheduler.Appointment"/> value which represents the event's appointment. This value is assigned to the <see cref="P:DevExpress.XtraScheduler.AppointmentEventArgs.Appointment"/> property.
</param>
</member>
<member name="P:DevExpress.XtraScheduler.ExchangeAppointmentEventArgs.Id">
<summary>
<para>Gets or sets the foreign appointment Id, that is the appointment identifier in the database of the third-party scheduler application (for instance, <b>MS Outlook</b>) with which appointment data is exchanged.
</para>
</summary>
<value>A <see cref="T:System.Object"/> which represents the appointment Id value.
</value>
</member>
<member name="T:DevExpress.XtraScheduler.CancelListChangedEventHandler">
<summary>
<para>Represents a method that will handle the <see cref="E:DevExpress.XtraScheduler.SchedulerStorageBase.AppointmentCollectionAutoReloading"/> and <see cref="E:DevExpress.XtraScheduler.SchedulerStorageBase.ResourceCollectionAutoReloading"/> events.
</para>
</summary>
</member>
<member name="M:DevExpress.XtraScheduler.CancelListChangedEventHandler.Invoke(System.Object,DevExpress.XtraScheduler.CancelListChangedEventArgs)">
<summary>
<para>Represents a method that will handle the <see cref="E:DevExpress.XtraScheduler.SchedulerStorageBase.AppointmentCollectionAutoReloading"/> and <see cref="E:DevExpress.XtraScheduler.SchedulerStorageBase.ResourceCollectionAutoReloading"/> events.
</para>
</summary>
<param name="sender">
The event source. This parameter identifies the <see cref="T:DevExpress.XtraScheduler.SchedulerStorage"/> which raised the event.
</param>
<param name="e">
A <see cref="T:DevExpress.XtraScheduler.CancelListChangedEventArgs"/> object which contains event data.
</param>
</member>
<member name="T:DevExpress.XtraScheduler.CancelListChangedEventArgs">
<summary>
<para>Provides data for the <see cref="E:DevExpress.XtraScheduler.SchedulerStorageBase.AppointmentCollectionAutoReloading"/> and <see cref="E:DevExpress.XtraScheduler.SchedulerStorageBase.ResourceCollectionAutoReloading"/> events.
</para>
</summary>
</member>
<member name="M:DevExpress.XtraScheduler.CancelListChangedEventArgs.#ctor(System.ComponentModel.ListChangedType,System.Int32,System.Int32)">
<summary>
<para>Initializes a new instance of the CancelListChangedEventArgs class with the specified settings.
</para>
</summary>
<param name="listChangedType">
A <see cref="T:System.ComponentModel.ListChangedType"/> enumeration value that specifies the way in which the list changed. This value is assigned to the <see cref="P:System.ComponentModel.ListChangedEventArgs.ListChangedType"/> property.
</param>
<param name="newIndex">
An integer value that specifies the new index of the item in the list. This value is assigned to the <see cref="P:System.ComponentModel.ListChangedEventArgs.NewIndex"/> property.
</param>
<param name="oldIndex">
An integer value that specifies the old index of the item in the list. This value is assigned to the <see cref="P:System.ComponentModel.ListChangedEventArgs.OldIndex"/> property.
</param>
</member>
<member name="P:DevExpress.XtraScheduler.CancelListChangedEventArgs.Cancel">
<summary>
<para>Gets or sets whether the operation performed on the processed event should be canceled.
</para>
</summary>
<value><b>true</b> to cancel the operation performed on the event; otherwise, <b>false</b>.
</value>
</member>
<member name="T:DevExpress.XtraScheduler.ResourceBaseCollection">
<summary>
<para>Represents a collection of resources.
</para>
</summary>
</member>
<member name="M:DevExpress.XtraScheduler.ResourceBaseCollection.#ctor">
<summary>
<para>Initializes a new instance of the ResourceBaseCollection class with default settings.
</para>
</summary>
</member>
<member name="M:DevExpress.XtraScheduler.ResourceBaseCollection.#ctor(DevExpress.Utils.DXCollectionUniquenessProviderType)">
<summary>
<para>This member supports the internal infrastructure and is not intended to be used directly from your code.
</para>
</summary>
<param name="uniquenessProviderType">
</param>
</member>
<member name="M:DevExpress.XtraScheduler.ResourceBaseCollection.FindAll(System.Predicate`1)">
<summary>
<para>Finds all elements with a predicate match and returns them in a list collection.
</para>
</summary>
<param name="match">
A predicate method delegate, which returns true if there's a match and the element is found.
</param>
<returns>An <see cref="T:DevExpress.XtraScheduler.ResourceBaseCollection"/> object, representing a collection of items that meets the criteria
</returns>
</member>
<member name="M:DevExpress.XtraScheduler.ResourceBaseCollection.GetResourceById(System.Object)">
<summary>
<para>Gets a resource within the collection by its ID value.
</para>
</summary>
<param name="resourceId">
A <see cref="T:System.Object"/> which represents the resource ID.
</param>
<returns>A <see cref="T:DevExpress.XtraScheduler.Resource"/> object whose <see cref="P:DevExpress.XtraScheduler.Resource.Id"/> is equal to the specified resource ID. If no resource with the specified ID is found, then the <see cref="P:DevExpress.XtraScheduler.Resource.Empty"/> value will be returned.
</returns>
</member>
<member name="T:DevExpress.XtraScheduler.TimeRulerCollection">
<summary>
<para>Represents a collection of time rulers.
</para>
</summary>
</member>
<member name="M:DevExpress.XtraScheduler.TimeRulerCollection.#ctor">
<summary>
<para>Initializes a new instance of the TimeRulerCollection class with default settings.
</para>
</summary>
</member>
<member name="T:DevExpress.XtraScheduler.TimeRuler">
<summary>
<para>Represents a time ruler.
</para>
</summary>
</member>
<member name="M:DevExpress.XtraScheduler.TimeRuler.#ctor">
<summary>
<para>Initializes a new instance of the TimeRuler class with default settings.
</para>
</summary>
</member>
<member name="P:DevExpress.XtraScheduler.TimeRuler.AdjustForDaylightSavingTime">
<summary>
<para>Gets or sets whether the time ruler maintains daylight-saving time.
</para>
</summary>
<value><b>true</b> to adjust a time ruler for daylight-saving time; otherwise, <b>false</b>.
</value>
</member>
<member name="P:DevExpress.XtraScheduler.TimeRuler.AlwaysShowTimeDesignator">
<summary>
<para>Gets or sets whether the AM/PM designator is shown for each hour.
</para>
</summary>
<value><b>true</b> to show the AM/PM designator for each hour; <b>false</b> to show the AM/PM designator only once.
</value>
</member>
<member name="P:DevExpress.XtraScheduler.TimeRuler.AlwaysShowTopRowTime">
<summary>
<para>Gets or sets a value indicating whether the time value should be always shown for the top row.
</para>
</summary>
<value><b>true</b> if the time for the top row should be always visible; otherwise, <b>false</b>.
</value>
</member>
<member name="P:DevExpress.XtraScheduler.TimeRuler.Caption">
<summary>
<para>Gets or sets the time ruler's caption.
</para>
</summary>
<value>A <see cref="T:System.String"/> value which specifies the time ruler's caption.
</value>
</member>
<member name="E:DevExpress.XtraScheduler.TimeRuler.Changed">
<summary>
<para>Fires when any of the <b>TimeRuler</b> properties are changed.
</para>
</summary>
</member>
<member name="P:DevExpress.XtraScheduler.TimeRuler.ShowCurrentTime">
<summary>
<para>Gets or sets whether the visual element which indicates the current time is displayed.
</para>
</summary>
<value><b>true</b> to display the time slider; otherwise, <b>false</b>.
</value>
</member>
<member name="P:DevExpress.XtraScheduler.TimeRuler.ShowMinutes">
<summary>
<para>Gets or sets whether minutes are displayed by the time ruler.
</para>
</summary>
<value><b>true</b> to display minutes; otherwise, <b>false</b>.
</value>
</member>
<member name="P:DevExpress.XtraScheduler.TimeRuler.TimeZone">
<summary>
<para>Gets or sets the time zone displayed by the time ruler.
</para>
</summary>
<value>A <see cref="T:DevExpress.XtraScheduler.SchedulerTimeZone"/> object which represents a time zone.
</value>
</member>
<member name="P:DevExpress.XtraScheduler.TimeRuler.UseClientTimeZone">
<summary>
<para>Gets or sets whether a particular TimeRuler always uses the ClientTimeZoneId setting.
</para>
</summary>
<value><b>true</b> if a TimeRuler uses ClientTimeZoneId setting; otherwise, <b>false</b>.
</value>
</member>
<member name="P:DevExpress.XtraScheduler.TimeRuler.Visible">
<summary>
<para>Gets or sets whether a TimeRuler element is displayed within the Scheduler control.
</para>
</summary>
<value><b>true</b> if the TimeRuler is visible; otherwise, <b>false</b>.
</value>
</member>
<member name="T:DevExpress.XtraScheduler.AppointmentBaseCollection">
<summary>
<para>Represents a collection of appointments.
</para>
</summary>
</member>
<member name="M:DevExpress.XtraScheduler.AppointmentBaseCollection.#ctor">
<summary>
<para>Initializes a new instance of the AppointmentBaseCollection class with default settings.
</para>
</summary>
</member>
<member name="M:DevExpress.XtraScheduler.AppointmentBaseCollection.FindAll(System.Predicate`1)">
<summary>
<para>Finds all elements with a predicate match and returns them in a list collection.
</para>
</summary>
<param name="match">
A predicate method delegate, which returns true if there's a match and the element is found.
</param>
<returns>An <see cref="T:DevExpress.XtraScheduler.AppointmentBaseCollection"/> object, representing a collection of items that meets the criteria
</returns>
</member>
<member name="M:DevExpress.XtraScheduler.AppointmentBaseCollection.GetAppointments(DevExpress.XtraScheduler.TimeInterval)">
<summary>
<para>Retrieves the collection of appointments that are in the specified time interval.
</para>
</summary>
<param name="interval">
A <see cref="T:DevExpress.XtraScheduler.TimeInterval"/> object specifying the required time interval.
</param>
<returns>An <see cref="T:DevExpress.XtraScheduler.AppointmentBaseCollection"/> object representing the collection of appointments which belong to the specified time interval. Note, that time intervals bounds are excluded in this case.
</returns>
</member>
<member name="M:DevExpress.XtraScheduler.AppointmentBaseCollection.GetAppointmentsFromSortedCollection(DevExpress.XtraScheduler.AppointmentBaseCollection,DevExpress.XtraScheduler.TimeInterval)">
<summary>
<para>Retrieves the collection of appointments that are in the specified time interval from the specified collection of appointments sorted by start dates.
</para>
</summary>
<param name="coll">
An <see cref="T:DevExpress.XtraScheduler.AppointmentBaseCollection"/> object specifying the collection of appointments sorted by their <see cref="P:DevExpress.XtraScheduler.Appointment.Start"/> dates.
</param>
<param name="interval">
A <see cref="T:DevExpress.XtraScheduler.TimeInterval"/> object specifying the required time interval.
</param>
<returns>An <see cref="T:DevExpress.XtraScheduler.AppointmentBaseCollection"/> object representing the collection of appointments which belong to the specified time interval. Note, that time intervals bounds are excluded in this case.
</returns>
</member>
<member name="T:DevExpress.XtraScheduler.SchedulerUnhandledExceptionEventHandler">
<summary>
<para>Represents a method that will handle the <see cref="E:DevExpress.Web.ASPxScheduler.ASPxScheduler.UnhandledException"/> event.
</para>
</summary>
</member>
<member name="M:DevExpress.XtraScheduler.SchedulerUnhandledExceptionEventHandler.Invoke(System.Object,DevExpress.XtraScheduler.SchedulerUnhandledExceptionEventArgs)">
<summary>
<para>Represents a method that will handle the <see cref="E:DevExpress.Web.ASPxScheduler.ASPxScheduler.UnhandledException"/> event.
</para>
</summary>
<param name="sender">
The event sender ( an <see cref="T:DevExpress.Web.ASPxScheduler.ASPxScheduler"/> control).
</param>
<param name="e">
A <see cref="T:DevExpress.XtraScheduler.SchedulerUnhandledExceptionEventArgs"/> object which contains event data.
</param>
</member>
<member name="T:DevExpress.XtraScheduler.Native.HumanReadableTimeSpanHelper">
<summary>
<para>Provides methods used to convert a <see cref="T:System.TimeSpan"/> value to a string and vice versa.
</para>
</summary>
</member>
<member name="E:DevExpress.XtraScheduler.Native.HumanReadableTimeSpanHelper.ConvertToString">
<summary>
<para>Occurs before the specified <see cref="T:System.TimeSpan"/> value is converted to a string.
</para>
</summary>
</member>
<member name="M:DevExpress.XtraScheduler.Native.HumanReadableTimeSpanHelper.Parse(System.String)">
<summary>
<para>Converts the specified string to a <see cref="T:System.TimeSpan"/> value.
</para>
</summary>
<param name="str">
A <see cref="T:System.String"/> to convert.
</param>
<returns>A <see cref="T:System.TimeSpan"/> value. If the specified string cannot be converted to a <see cref="T:System.TimeSpan"/>, the <see cref="F:System.TimeSpan.MinValue"/> is returned.
</returns>
</member>
<member name="E:DevExpress.XtraScheduler.Native.HumanReadableTimeSpanHelper.ParseString">
<summary>
<para>Occurs before the specified string is converted to a <see cref="T:System.TimeSpan"/> value.
</para>
</summary>
</member>
<member name="M:DevExpress.XtraScheduler.Native.HumanReadableTimeSpanHelper.Reset">
<summary>
<para>Resets all options to their default values.
</para>
</summary>
</member>
<member name="M:DevExpress.XtraScheduler.Native.HumanReadableTimeSpanHelper.ToString(System.TimeSpan)">
<summary>
<para>Converts the specified <see cref="T:System.TimeSpan"/> value to a string.
</para>
</summary>
<param name="val">
A <see cref="T:System.TimeSpan"/> value to convert.
</param>
<returns>A <see cref="T:System.String"/> value that is the text representation of the time span. If the specified time span cannot be converted to a string, the <see cref="F:System.String.Empty"/> value is returned.
</returns>
</member>
<member name="T:DevExpress.XtraScheduler.PersistentObjectsEventHandler">
<summary>
<para>Represents a method that will handle the <b>persistent objects</b> events of the <see cref="T:DevExpress.XtraScheduler.SchedulerStorage"/>.
</para>
</summary>
</member>
<member name="M:DevExpress.XtraScheduler.PersistentObjectsEventHandler.Invoke(System.Object,DevExpress.XtraScheduler.PersistentObjectsEventArgs)">
<summary>
<para>Represents a method that will handle the <b>persistent objects</b> events of the <see cref="T:DevExpress.XtraScheduler.SchedulerStorage"/>.
</para>
</summary>
<param name="sender">
The event source. This parameter identifies the <see cref="T:DevExpress.XtraScheduler.SchedulerStorage"/> which raised the event.
</param>
<param name="e">
A <see cref="T:DevExpress.XtraScheduler.PersistentObjectsEventArgs"/> object which contains event data.
</param>
</member>
<member name="T:DevExpress.XtraScheduler.PersistentObjectsEventArgs">
<summary>
<para>Provides data for the <b>persistent objects</b> events of the <see cref="T:DevExpress.XtraScheduler.SchedulerStorage"/>.
</para>
</summary>
</member>
<member name="M:DevExpress.XtraScheduler.PersistentObjectsEventArgs.#ctor(System.Collections.IList)">
<summary>
<para>Initializes a new instance of the PersistentObjectsEventArgs class with the specified <see cref="T:System.Collections.IList"/> object.
</para>
</summary>
<param name="objects">
A <see cref="T:System.Collections.IList"/> object which will contain the event's persistent objects. This value is assigned to the <see cref="P:DevExpress.XtraScheduler.PersistentObjectsEventArgs.Objects"/> property.
</param>
</member>
<member name="P:DevExpress.XtraScheduler.PersistentObjectsEventArgs.Objects">
<summary>
<para>Gets the persistent objects which the event was raised for.
</para>
</summary>
<value>A <see cref="T:System.Collections.IList"/> object which represents the collection of persistent objects that the event was raised for.
</value>
</member>
<member name="T:DevExpress.XtraScheduler.PersistentObjectCancelEventHandler">
<summary>
<para>Represents a method that will handle the <b>persistent object</b> events of the <see cref="T:DevExpress.XtraScheduler.SchedulerStorage"/> that have a <b>cancel</b> option.
</para>
</summary>
</member>
<member name="M:DevExpress.XtraScheduler.PersistentObjectCancelEventHandler.Invoke(System.Object,DevExpress.XtraScheduler.PersistentObjectCancelEventArgs)">
<summary>
<para>Represents a method that will handle the <b>persistent object</b> events of the <see cref="T:DevExpress.XtraScheduler.SchedulerStorage"/> that have a <b>cancel</b> option.
</para>
</summary>
<param name="sender">
The event source. This parameter identifies the <see cref="T:DevExpress.XtraScheduler.SchedulerStorage"/> which raised the event.
</param>
<param name="e">
A <see cref="T:DevExpress.XtraScheduler.PersistentObjectCancelEventArgs"/> object which contains event data.
</param>
</member>
<member name="T:DevExpress.XtraScheduler.Exchange.AppointmentExchanger">
<summary>
<para>Serves as the base class for classes that provide functionality for importing and exporting appointments.
</para>
</summary>
</member>
<member name="E:DevExpress.XtraScheduler.Exchange.AppointmentExchanger.GetAppointmentForeignId">
<summary>
<para>Occurs before an <b>Appointment Exchanger</b> retrieves information about a <b>foreign ID</b> of an appointment, i.e. its identifier in a third-party scheduler application (for instance, <b>MS Outlook</b>) with which the appointment data are exchanged.
</para>
</summary>
</member>
<member name="P:DevExpress.XtraScheduler.Exchange.AppointmentExchanger.IsTermination">
<summary>
<para>Indicates that the export/import process was terminated.
</para>
</summary>
<value><b>true</b> if an attempt to execute Import (Export) methods was terminated; otherwise, <b>false</b>.
</value>
</member>
<member name="E:DevExpress.XtraScheduler.Exchange.AppointmentExchanger.OnException">
<summary>
<para>Occurs if an exception is raised during the export/import process.
</para>
</summary>
</member>
<member name="P:DevExpress.XtraScheduler.Exchange.AppointmentExchanger.SourceObjectCount">
<summary>
<para>Gets the number of objects (appointments) that will take part in an exchange procedure.
</para>
</summary>
<value>An integer, representing the number of objects for exchange.
</value>
</member>
<member name="P:DevExpress.XtraScheduler.Exchange.AppointmentExchanger.Storage">
<summary>
<para>Gets the storage with which the current appointment exchanger is synchronized.
</para>
</summary>
<value>A <see cref="T:DevExpress.XtraScheduler.SchedulerStorageBase"/> object for this appointment exchanger.
</value>
</member>
<member name="M:DevExpress.XtraScheduler.Exchange.AppointmentExchanger.Terminate">
<summary>
<para>Unconditionally stops the export/import process, so no data are loaded.
</para>
</summary>
</member>
<member name="T:DevExpress.XtraScheduler.Exchange.AppointmentImporter">
<summary>
<para>Represents the appointments importer which loads the appointments data from a scheduler application (for instance, MS Outlook) to the <b>Scheduler</b>.
</para>
</summary>
</member>
<member name="E:DevExpress.XtraScheduler.Exchange.AppointmentImporter.AppointmentImported">
<summary>
<para>Occurs after an object of <see cref="T:DevExpress.XtraScheduler.Exchange.AppointmentImporter"/> or derived class imports an appointment from <b>iCalendar</b> file or <b>MS Outlook</b> Calendar storage.
</para>
</summary>
</member>
<member name="E:DevExpress.XtraScheduler.Exchange.AppointmentImporter.AppointmentImporting">
<summary>
<para>Occurs before an <see cref="T:DevExpress.XtraScheduler.Exchange.AppointmentImporter"/> class descendant imports an appointment from <b>iCalendar</b> file or from <b>MS Outlook</b> Calendar storage.
</para>
</summary>
</member>
<member name="M:DevExpress.XtraScheduler.Exchange.AppointmentImporter.Import(System.IO.Stream)">
<summary>
<para>Imports appointments from the specified stream.
</para>
</summary>
<param name="stream">
A <see cref="T:System.IO.Stream"/> object which represents the stream the appointments will be imported from.
</param>
</member>
<member name="M:DevExpress.XtraScheduler.Exchange.AppointmentImporter.Import(System.String)">
<summary>
<para>Imports appointments from the specified file.
</para>
</summary>
<param name="path">
A string, representing a file path from where the appointments will be imported.
</param>
</member>
<member name="T:DevExpress.XtraScheduler.Exchange.AppointmentExporter">
<summary>
<para>Represents the appointments exporter which exports the appointments data from the <b>Scheduler</b> to another scheduler application (for instance, MS Outlook).
</para>
</summary>
</member>
<member name="E:DevExpress.XtraScheduler.Exchange.AppointmentExporter.AppointmentExported">
<summary>
<para>Occurs after an <b>Appointment Exporter</b> exports an appointment to <b>iCalendar</b> file or to <b>MS Outlook</b> Calendar storage.
</para>
</summary>
</member>
<member name="E:DevExpress.XtraScheduler.Exchange.AppointmentExporter.AppointmentExporting">
<summary>
<para>Occurs before an <see cref="T:DevExpress.XtraScheduler.Exchange.AppointmentExporter"/> class or its descendant exports an appointment to <b>iCalendar</b> file or to <b>MS Outlook</b> Calendar storage.
</para>
</summary>
</member>
<member name="M:DevExpress.XtraScheduler.Exchange.AppointmentExporter.Export(System.IO.Stream)">
<summary>
<para>Exports appointments to the specified stream.
</para>
</summary>
<param name="stream">
A <see cref="T:System.IO.Stream"/> object which represents the stream the appointments will be exported to.
</param>
</member>
<member name="M:DevExpress.XtraScheduler.Exchange.AppointmentExporter.Export(System.String)">
<summary>
<para>Exports appointments to the specified file.
</para>
</summary>
<param name="path">
A string that represents a file path to which the appointments will be exported.
</param>
</member>
<member name="T:DevExpress.XtraScheduler.SchedulerMenuItemId">
<summary>
<para>Lists items that can be used in the context menus of a <b>Scheduler</b>.
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.SchedulerMenuItemId.AppointmentDependencyCreation">
<summary>
<para><para>The <b>Create Dependency</b> item of the context menu which is invoked when an appointment is clicked with the right mouse button. Selecting this item enables the user to drag a line from the current (the Parent) appointment to another (Dependent) appointment to establish a dependency. By default, the type of dependency is <see cref="F:DevExpress.XtraScheduler.AppointmentDependencyType.FinishToStart"/>.</para>
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.SchedulerMenuItemId.AppointmentDependencyMenu">
<summary>
<para><para>The entire context menu which is invoked after a dependency line has been clicked with the right mouse button.</para>
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.SchedulerMenuItemId.AppointmentDragCancel">
<summary>
<para><para>The <b>Cancel</b> item of a context menu which is invoked after an appointment has been clicked and dragged with the right mouse button. Selecting this item cancels the dragging of the appointment.</para>
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.SchedulerMenuItemId.AppointmentDragCopy">
<summary>
<para><para>The <b>Copy</b> item of the context menu which is invoked after an appointment has been clicked and dragged with the right mouse button. Selecting this item copies the dragged appointment and inserts a copy at the time period which the appointment being copied was dragged to.</para>
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.SchedulerMenuItemId.AppointmentDragMenu">
<summary>
<para><para>The entire context menu which is invoked after an appointment has been clicked and dragged with the right mouse button.</para>
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.SchedulerMenuItemId.AppointmentDragMove">
<summary>
<para><para>The <b>Move</b> item of the context menu which is invoked after an appointment has been clicked and dragged with the right mouse button. Selecting this item moves the appointment to the time period which it was dragged to.</para>
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.SchedulerMenuItemId.AppointmentMenu">
<summary>
<para><para>The entire context menu which is invoked after an appointment has been clicked with the right mouse button.</para>
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.SchedulerMenuItemId.ChangeAppointmentLabelUI">
<summary>
<para>For internal use only.
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.SchedulerMenuItemId.ChangeAppointmentReminderUI">
<summary>
<para>For internal use only.
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.SchedulerMenuItemId.ChangeAppointmentStatusUI">
<summary>
<para>For internal use only.
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.SchedulerMenuItemId.ChangeSnapToCellsUI">
<summary>
<para>For internal use only.
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.SchedulerMenuItemId.ChangeTimelineScaleWidthUI">
<summary>
<para>For internal use only.
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.SchedulerMenuItemId.CollapseResource">
<summary>
<para>Menu item that corresponds to the command used to collapse a resource tree in a hierarchical view displayed by the <see cref="T:DevExpress.XtraScheduler.UI.ResourcesTree"/> control.
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.SchedulerMenuItemId.Custom">
<summary>
<para><para>Any custom menu item. You can add your custom menu items by handling the <see cref="E:DevExpress.XtraScheduler.SchedulerControl.PreparePopupMenu"/> event.</para>
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.SchedulerMenuItemId.CustomizeCurrentView">
<summary>
<para>For internal use only.
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.SchedulerMenuItemId.CustomizeTimeRuler">
<summary>
<para><para>The <b>Customize Time Ruler</b> item of the context menu which is invoked when the time ruler is clicked with the right mouse button. Selecting this item invokes the <b>Time Ruler</b> dialog which allows the properties of the current time ruler to be edited.</para>
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.SchedulerMenuItemId.DefaultMenu">
<summary>
<para><para>The entire context menu which is invoked when the view's time cells that don't contain any appointments are clicked with the right mouse button.</para>
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.SchedulerMenuItemId.DeleteAppointment">
<summary>
<para><para>The <b>Delete</b> item of the context menu which is invoked when an appointment is clicked with the right mouse button. Selecting this item removes the current appointment. If the current appointment is recurring, then the <b>Delete Series</b> dialog will be invoked.</para>
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.SchedulerMenuItemId.DeleteAppointmentDependency">
<summary>
<para><para>The <b>Delete</b> item of the context menu which is invoked when a dependency line is clicked with the right mouse button. Selecting this item deletes the selected dependency.</para>
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.SchedulerMenuItemId.DeleteOccurrenceUI">
<summary>
<para>For internal use only.
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.SchedulerMenuItemId.DeleteSeriesUI">
<summary>
<para>For internal use only.
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.SchedulerMenuItemId.EditOccurrenceUI">
<summary>
<para>For internal use only.
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.SchedulerMenuItemId.EditSeries">
<summary>
<para><para>The <b>Edit Series</b> item of the context menu which is invoked when a recurring appointment is clicked with the right mouse button. Selecting this item invokes the <b>Edit Appointment</b> dialog which allows the entire series of recurring appointments to be edited.</para>
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.SchedulerMenuItemId.EditSeriesUI">
<summary>
<para>For internal use only.
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.SchedulerMenuItemId.ExpandResource">
<summary>
<para>Menu item that corresponds to the command used to expand a resource tree in a hierarchical view displayed by the <see cref="T:DevExpress.XtraScheduler.UI.ResourcesTree"/> control.
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.SchedulerMenuItemId.GotoDate">
<summary>
<para><para>The <b>Go to Date</b> item of the context menu which is invoked when the view's time cells which don't contain any appointments are clicked with the right mouse button. Selecting this item invokes the <b>Go To Date</b> dialog which allows the date displayed in the current view to be changed.</para>
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.SchedulerMenuItemId.GotoThisDay">
<summary>
<para><para>The <b>Go to This Day</b> item of the context menu which is invoked when any of the view's time cells that don't contain any appointments are clicked with the right mouse button (only in a Week or Month view). Selecting this item changes the current view to the Day and sets the date displayed in this view to the selected date.</para>
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.SchedulerMenuItemId.GotoToday">
<summary>
<para><para>The <b>Go to Today</b> item of the context menu which is invoked when any of the view's time cells that don't contain any appointments are clicked with the right mouse button. Selecting this item changes the date displayed in the current view to the current date on the local machine.</para>
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.SchedulerMenuItemId.LabelSubMenu">
<summary>
<para><para>The <b>Label As</b> item of the context menu which is invoked after an appointment has been clicked with the right mouse button, and also the entire submenu which is opened with this menu item.</para>
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.SchedulerMenuItemId.NewAllDayEvent">
<summary>
<para><para>The <b>New All-Day Event</b> item of the context menu which is invoked when the view's time cells that don't contain any appointments are clicked with the right mouse button. Selecting this item invokes the <b>Edit Appointment</b> dialog used to create a new all-day appointment (in this case the <see cref="P:DevExpress.XtraScheduler.Appointment.AllDay"/> option in the dialog is checked).</para>
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.SchedulerMenuItemId.NewAppointment">
<summary>
<para><para>The <b>New Appointment</b> item of the context menu which is invoked when a view's time cells that don't contain any appointments are clicked with the right mouse button. Selecting this item invokes the <b>Edit Appointment</b> dialog used to create a new appointment.</para>
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.SchedulerMenuItemId.NewRecurringAppointment">
<summary>
<para><para>The <b>New Recurring Appointment</b> item of the context menu which is invoked when a view's time cells that don't contain any appointments are clicked with the right mouse button. Selecting this item invokes the <b>Edit Appointment</b> dialog used to create a new appointment, and also invokes the <b>Recurrence</b> dialog which allows the recurrence pattern to be specified for the new appointment.</para>
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.SchedulerMenuItemId.NewRecurringEvent">
<summary>
<para><para>The <b>New Recurring Event</b> item of the context menu which is invoked when a view's time cells that don't contain any appointments are clicked with the right mouse button. Selecting this item invokes the <b>Edit Appointment</b> dialog used to create a new all-day appointment (in this case the <see cref="P:DevExpress.XtraScheduler.Appointment.AllDay"/> option in the dialog is checked), and also invokes the <b>Recurrence</b> dialog which allows the recurrence pattern to be specified for the new appointment.</para>
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.SchedulerMenuItemId.OpenAppointment">
<summary>
<para><para>The <b>Open</b> item of the context menu which is invoked when an appointment is clicked with the right mouse button. Selecting this item invokes the <b>Edit Appointment</b> dialog which allows the properties of the current appointment to be edited. Note that if the appointment is recurring, then this item only allows the current appointment to be edited, not its entire series.</para>
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.SchedulerMenuItemId.OpenAppointmentDependency">
<summary>
<para><para>The <b>Edit</b> item of the context menu which is invoked when a dependency line is clicked with the right mouse button. Selecting this item invokes the <see cref="T:DevExpress.XtraScheduler.UI.AppointmentDependencyForm"/> dialog which enables the user to change the dependency type.</para>
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.SchedulerMenuItemId.OpenSchedule">
<summary>
<para>For internal use only.
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.SchedulerMenuItemId.OtherSettings">
<summary>
<para>For internal use only.
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.SchedulerMenuItemId.Print">
<summary>
<para>For internal use only.
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.SchedulerMenuItemId.PrintAppointment">
<summary>
<para>For internal use only.
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.SchedulerMenuItemId.PrintPageSetup">
<summary>
<para>For internal use only.
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.SchedulerMenuItemId.PrintPreview">
<summary>
<para>For internal use only.
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.SchedulerMenuItemId.RestoreOccurrence">
<summary>
<para><para>The <b>Restore Default State</b> item of the context menu which is invoked when a changed recurring appointment (which <see cref="P:DevExpress.XtraScheduler.Appointment.Type"/> property is equal to <b>ChangedOccurrence</b>) is clicked with the right mouse button. This item is accessible for recurring appointments only. Selecting this item restores the default state of the appointment as it was generated by the recurrence pattern.</para>
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.SchedulerMenuItemId.RulerMenu">
<summary>
<para><para>The entire context menu which is invoked when the time ruler is clicked with the right mouse button. Note that the corresponding items for this context menu are specified by the <see cref="P:DevExpress.XtraScheduler.UserInterfaceObject.MenuCaption"/> property of each time slot.</para>
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.SchedulerMenuItemId.SaveSchedule">
<summary>
<para>For internal use only.
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.SchedulerMenuItemId.SetSnapToCells">
<summary>
<para>For internal use only.
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.SchedulerMenuItemId.SplitAppointment">
<summary>
<para>This menu item is associated with a command to switch the Scheduler into a Split mode.
See the How to: Split Appointments and Series article for more information.
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.SchedulerMenuItemId.StatusSubMenu">
<summary>
<para><para>The <b>Show Time As</b> item of the context menu which is invoked after an appointment has been clicked with the right mouse button, and also the entire submenu which is opened with this menu item.</para>
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.SchedulerMenuItemId.SwitchCellsAutoHeight">
<summary>
<para>For internal use only.
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.SchedulerMenuItemId.SwitchCompressWeekend">
<summary>
<para>For internal use only.
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.SchedulerMenuItemId.SwitchShowWorkTimeOnly">
<summary>
<para>For internal use only.
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.SchedulerMenuItemId.SwitchTimeScale">
<summary>
<para>For internal use only.
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.SchedulerMenuItemId.SwitchTimeScalesTo">
<summary>
<para>For internal use only.
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.SchedulerMenuItemId.SwitchTimeScalesTo10MinutesSlot">
<summary>
<para>For internal use only.
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.SchedulerMenuItemId.SwitchTimeScalesTo15MinutesSlot">
<summary>
<para>For internal use only.
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.SchedulerMenuItemId.SwitchTimeScalesTo30MinutesSlot">
<summary>
<para>For internal use only.
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.SchedulerMenuItemId.SwitchTimeScalesTo5MinutesSlot">
<summary>
<para>For internal use only.
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.SchedulerMenuItemId.SwitchTimeScalesTo60MinutesSlot">
<summary>
<para>For internal use only.
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.SchedulerMenuItemId.SwitchTimeScalesTo6MinutesSlot">
<summary>
<para>For internal use only.
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.SchedulerMenuItemId.SwitchToDayView">
<summary>
<para><para>The <b>Day View</b> check item of the <b>Change View To</b> submenu of the context menu which is invoked when a view's time cells that don't contain any appointments are clicked with the right mouse button. Selecting this item changes the <see cref="P:DevExpress.XtraScheduler.SchedulerControl.ActiveView"/> to the Day View.</para>
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.SchedulerMenuItemId.SwitchToGanttView">
<summary>
<para><para>The <b>Gantt View</b> check item of the <b>Change View To</b> submenu of the context menu which is invoked when time cells that don't contain any appointments are clicked with the right mouse button. Selecting this item changes the <see cref="P:DevExpress.XtraScheduler.SchedulerControl.ActiveView"/> to the Gantt View.</para>
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.SchedulerMenuItemId.SwitchToGroupByDate">
<summary>
<para>
<para>A command to set the <see cref="P:DevExpress.XtraScheduler.SchedulerControl.GroupType"/> to the <see cref="F:DevExpress.XtraScheduler.SchedulerGroupType.Date"/>.</para>
<para>The default menu does not contain this item. Use the <see cref="E:DevExpress.XtraScheduler.SchedulerControl.PreparePopupMenu"/> event, to insert the <b>SwitchToGroupByDate</b> item.</para>
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.SchedulerMenuItemId.SwitchToGroupByNone">
<summary>
<para>
<para>A command to set the <see cref="P:DevExpress.XtraScheduler.SchedulerControl.GroupType"/> to the <see cref="F:DevExpress.XtraScheduler.SchedulerGroupType.None"/>.</para>
<para>The default menu does not contain this item. Use the <see cref="E:DevExpress.XtraScheduler.SchedulerControl.PreparePopupMenu"/> event, to insert the <b>SwitchToGroupByNone</b> item.</para>
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.SchedulerMenuItemId.SwitchToGroupByResource">
<summary>
<para>
<para>A command to set the <see cref="P:DevExpress.XtraScheduler.SchedulerControl.GroupType"/> to the <see cref="F:DevExpress.XtraScheduler.SchedulerGroupType.Resource"/>.</para>
<para>The default menu does not contain this item. Use the <see cref="E:DevExpress.XtraScheduler.SchedulerControl.PreparePopupMenu"/> event, to insert the <b>SwitchToGroupByResource</b> item.</para>
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.SchedulerMenuItemId.SwitchToMonthView">
<summary>
<para><para>The <b>Month View</b> check item of the <b>Change View To</b> submenu of the context menu which is invoked when a view's time cells that don't contain any appointments are clicked with the right mouse button. Selecting this item changes the <see cref="P:DevExpress.XtraScheduler.SchedulerControl.ActiveView"/> to the Month View.</para>
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.SchedulerMenuItemId.SwitchToTimelineView">
<summary>
<para><para>The <b>Timeline View</b> check item of the <b>Change View To</b> submenu of the context menu, invoked on a right click within the scheduler display area not occupied by appointments. Selecting this item changes the <see cref="P:DevExpress.XtraScheduler.SchedulerControl.ActiveView"/> to the Timeline View.</para>
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.SchedulerMenuItemId.SwitchToWeekView">
<summary>
<para><para>The <b>Week View</b> check item of the <b>Change View To</b> submenu of the context menu which is invoked when a view's time cells that don't contain any appointments are clicked with the right mouse button. Selecting this item changes the <see cref="P:DevExpress.XtraScheduler.SchedulerControl.ActiveView"/> to the Week View.</para>
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.SchedulerMenuItemId.SwitchToWorkWeekView">
<summary>
<para><para>The <b>Work Week View</b> check item of the <b>Change View To</b> submenu of the context menu which is invoked when a view's time cells that don't contain any appointments are clicked with the right mouse button. Selecting this item changes the <see cref="P:DevExpress.XtraScheduler.SchedulerControl.ActiveView"/> to the Work Week View.</para>
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.SchedulerMenuItemId.SwitchViewMenu">
<summary>
<para><para>The <b>Change View To</b> item of the context menu which is invoked when a view's time cells that don't contain any appointments are clicked with the right mouse button, and also the entire submenu which is opened with this menu item.</para>
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.SchedulerMenuItemId.TimeScaleEnable">
<summary>
<para><para>Any of the <b>Time Scales</b> menu item of the popup menu invoked on a right click within the scheduler display area not occupied by appointments, when the scheduler's view is the Timeline View. Checking these items enables the corresponding Timeline scales. </para>
<para>The entire submenu opened by this menu item has the same <b>Id</b>.
</para>
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.SchedulerMenuItemId.TimeScaleVisible">
<summary>
<para><para>Check items of the <b>Time Scale Captions</b> submenu in the context menu invoked on a right click within the scheduler display area not occupied by appointments. Checking these items makes the corresponding Timeline scales visible.</para>
<para>The entire submenu opened by this menu item has the same Id.</para>
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.SchedulerMenuItemId.ToggleRecurrence">
<summary>
<para>For internal use only.
</para>
</summary>
</member>
<member name="T:DevExpress.XtraScheduler.TimeIntervalEventHandler">
<summary>
<para>Represents a method that will handle the <see cref="E:DevExpress.XtraScheduler.SchedulerStorageBase.FetchAppointments"/> event.
</para>
</summary>
</member>
<member name="M:DevExpress.XtraScheduler.TimeIntervalEventHandler.Invoke(System.Object,DevExpress.XtraScheduler.TimeIntervalEventArgs)">
<summary>
<para>Represents a method that will handle the <see cref="E:DevExpress.XtraScheduler.SchedulerStorageBase.FetchAppointments"/> event.
</para>
</summary>
<param name="sender">
The event source. This parameter identifies the <see cref="T:DevExpress.XtraScheduler.SchedulerStorage"/> which raised the event.
</param>
<param name="e">
A <see cref="T:DevExpress.XtraScheduler.TimeIntervalEventArgs"/> object which contains event data.
</param>
</member>
<member name="T:DevExpress.XtraScheduler.TimeIntervalEventArgs">
<summary>
<para>Provides data for the <see cref="E:DevExpress.XtraScheduler.SchedulerStorageBase.FetchAppointments"/> event.
</para>
</summary>
</member>
<member name="M:DevExpress.XtraScheduler.TimeIntervalEventArgs.#ctor(DevExpress.XtraScheduler.TimeInterval)">
<summary>
<para>Initializes a new instance of the TimeIntervalEventArgs class with the specified time interval.
</para>
</summary>
<param name="interval">
A <see cref="T:DevExpress.XtraScheduler.TimeInterval"/> value which represents the event's time interval. This value is assigned to the <see cref="P:DevExpress.XtraScheduler.TimeIntervalEventArgs.Interval"/> property.
</param>
</member>
<member name="P:DevExpress.XtraScheduler.TimeIntervalEventArgs.Interval">
<summary>
<para>Gets the time interval which the event was raised for.
</para>
</summary>
<value>A <see cref="T:DevExpress.XtraScheduler.TimeInterval"/> object which represents the time interval that the event was raised for.
</value>
</member>
<member name="T:DevExpress.XtraScheduler.AppointmentEventArgs">
<summary>
<para>Serves as the base class for classes which provide data for certain <b>appointment</b> events.
</para>
</summary>
</member>
<member name="M:DevExpress.XtraScheduler.AppointmentEventArgs.#ctor(DevExpress.XtraScheduler.Appointment)">
<summary>
<para>Initializes a new instance of the AppointmentEventArgs class with the specified appointment.
</para>
</summary>
<param name="apt">
An <see cref="T:DevExpress.XtraScheduler.Appointment"/> value which represents the event's appointment. This value is assigned to the <see cref="P:DevExpress.XtraScheduler.AppointmentEventArgs.Appointment"/> property.
</param>
</member>
<member name="P:DevExpress.XtraScheduler.AppointmentEventArgs.Appointment">
<summary>
<para>Gets the appointment for which the event was raised.
</para>
</summary>
<value>An <see cref="T:DevExpress.XtraScheduler.Appointment"/> object which represents the appointment for which the event was raised.
</value>
</member>
<member name="T:DevExpress.XtraScheduler.AppointmentConflictsMode">
<summary>
<para>Lists the modes which specify if appointments conflicts are allowed.
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.AppointmentConflictsMode.Allowed">
<summary>
<para>Appointments conflicts are <b>allowed</b>. This means that appointment intervals can intersect for the same resource (or for at least for one of the resources to which they belong, if resources are shared).
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.AppointmentConflictsMode.Custom">
<summary>
<para>Whether the conflicts are resolved or not is determined manually in the <see cref="E:DevExpress.XtraScheduler.SchedulerControl.AllowAppointmentConflicts"/> event handler.
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.AppointmentConflictsMode.Forbidden">
<summary>
<para>Appointments conflicts are <b>forbidden</b>. This means that appointment intervals can't intersect each other for the same resource (or for at least for one of the resources to which they belong, if resources are shared).
</para>
</summary>
</member>
<member name="T:DevExpress.XtraScheduler.FixedDurationIntervalCollection">
<summary>
<para>Represents a base class for collections which contain time intervals of the fixed duration (day or week).
</para>
</summary>
</member>
<member name="T:DevExpress.XtraScheduler.ReminderAlertNotificationCollection">
<summary>
<para>Represents a collection of alert notifications.
</para>
</summary>
</member>
<member name="M:DevExpress.XtraScheduler.ReminderAlertNotificationCollection.#ctor">
<summary>
<para>Initializes a new instance of the ReminderAlertNotificationCollection class with default settings.
</para>
</summary>
</member>
<member name="M:DevExpress.XtraScheduler.ReminderAlertNotificationCollection.Add(DevExpress.XtraScheduler.ReminderAlertNotification)">
<summary>
<para>Appends the specified <see cref="T:DevExpress.XtraScheduler.ReminderAlertNotification"/> object to the current collection.
</para>
</summary>
<param name="obj">
A <see cref="T:DevExpress.XtraScheduler.ReminderAlertNotification"/> object to append to the collection.
</param>
<returns>An integer value indicating the position into which the new element was inserted. If the element is already present in the collection, then its current position will be returned.
</returns>
</member>
<member name="P:DevExpress.XtraScheduler.ReminderAlertNotificationCollection.Item(System.Int32)">
<summary>
<para>Provides indexed access to individual items in the collection.
</para>
</summary>
<param name="index">
A zero-based integer specifying the desired item's position within the collection. If it's negative or exceeds the last available index, an exception is raised.
</param>
<value>A <see cref="T:DevExpress.XtraScheduler.ReminderAlertNotification"/> object which represents the alert notification located at the specified position.
</value>
</member>
<member name="T:DevExpress.XtraScheduler.ReminderAlertNotification">
<summary>
<para>Contains information related to the reminder alert.
</para>
</summary>
</member>
<member name="M:DevExpress.XtraScheduler.ReminderAlertNotification.#ctor(DevExpress.XtraScheduler.Reminder,DevExpress.XtraScheduler.Appointment)">
<summary>
<para>Initializes a new instance of the ReminderAlertNotification class for the specified reminder and occurrence in a recurrent series.
</para>
</summary>
<param name="reminder">
A <see cref="T:DevExpress.XtraScheduler.Reminder"/> object that specifies the reminder of the alert notification. This value is assigned to the <see cref="P:DevExpress.XtraScheduler.ReminderAlertNotification.Reminder"/> property.
</param>
<param name="actualAppointment">
An <see cref="T:DevExpress.XtraScheduler.Appointment"/> for which an alert is fired.
</param>
</member>
<member name="P:DevExpress.XtraScheduler.ReminderAlertNotification.ActualAppointment">
<summary>
<para>Gets an appointment for which an alert is fired.
</para>
</summary>
<value>An <see cref="T:DevExpress.XtraScheduler.Appointment"/> object, representing an event that has an alert invoked.
</value>
</member>
<member name="P:DevExpress.XtraScheduler.ReminderAlertNotification.Reminder">
<summary>
<para>Gets the reminder of the alert notification.
</para>
</summary>
<value>A <see cref="T:DevExpress.XtraScheduler.Reminder"/> object that specifies the reminder of the alert notification.
</value>
</member>
<member name="T:DevExpress.XtraScheduler.SchedulerOptionsCustomization">
<summary>
<para>Provides customization options for the Scheduler control.
</para>
</summary>
</member>
<member name="M:DevExpress.XtraScheduler.SchedulerOptionsCustomization.#ctor">
<summary>
<para>Initializes a new instance of the SchedulerOptionsCustomization class with default settings.
</para>
</summary>
</member>
<member name="P:DevExpress.XtraScheduler.SchedulerOptionsCustomization.AllowAppointmentConflicts">
<summary>
<para>Gets or sets a value that specifies whether an end-user is allowed to share the schedule time between two or more appointments.
</para>
</summary>
<value>An <see cref="T:DevExpress.XtraScheduler.AppointmentConflictsMode"/> enumeration value specifying whether the time interval of two or more appointments can intersect or not, if these appointments belong to the same resource(s).
</value>
</member>
<member name="P:DevExpress.XtraScheduler.SchedulerOptionsCustomization.AllowAppointmentCopy">
<summary>
<para>Gets or sets a value that specifies whether an end-user is allowed to copy appointments.
</para>
</summary>
<value>A <see cref="T:DevExpress.XtraScheduler.UsedAppointmentType"/> enumeration value that specifies the type of appointment to which the action can be applied.
</value>
</member>
<member name="P:DevExpress.XtraScheduler.SchedulerOptionsCustomization.AllowAppointmentCreate">
<summary>
<para>Gets or sets a value that specifies whether an end-user is allowed to create new appointments.
</para>
</summary>
<value>A <see cref="T:DevExpress.XtraScheduler.UsedAppointmentType"/> enumeration value that specifies the type of appointment which the action can be applied to.
</value>
</member>
<member name="P:DevExpress.XtraScheduler.SchedulerOptionsCustomization.AllowAppointmentDelete">
<summary>
<para>Gets or sets a value that specifies whether an end-user is allowed to delete appointments.
</para>
</summary>
<value>A <see cref="T:DevExpress.XtraScheduler.UsedAppointmentType"/> enumeration value that specifies the types of appointment to which the action can be applied.
</value>
</member>
<member name="P:DevExpress.XtraScheduler.SchedulerOptionsCustomization.AllowAppointmentDrag">
<summary>
<para>Gets or sets a value that specifies whether an end-user is allowed to drag and drop appointments to another time slot or date.
</para>
</summary>
<value>An <see cref="T:DevExpress.XtraScheduler.UsedAppointmentType"/> enumeration value that specifies the type of appointment which the action can be applied to.
</value>
</member>
<member name="P:DevExpress.XtraScheduler.SchedulerOptionsCustomization.AllowAppointmentDragBetweenResources">
<summary>
<para>Gets or sets a value that specifies whether an end-user is allowed to drag and drop appointments between resources.
</para>
</summary>
<value>An <see cref="T:DevExpress.XtraScheduler.UsedAppointmentType"/> enumeration value that specifies the type of appointment that the action can be applied to.
</value>
</member>
<member name="P:DevExpress.XtraScheduler.SchedulerOptionsCustomization.AllowAppointmentEdit">
<summary>
<para>Gets or sets a value that specifies whether an end-user is allowed to edit appointments.
</para>
</summary>
<value>An <see cref="T:DevExpress.XtraScheduler.UsedAppointmentType"/> enumeration value that specifies the type of appointment which the action can be applied to.
</value>
</member>
<member name="P:DevExpress.XtraScheduler.SchedulerOptionsCustomization.AllowAppointmentMultiSelect">
<summary>
<para>Gets or sets a value that specifies whether an end-user is allowed to select more than one appointment simultaneously.
</para>
</summary>
<value><b>true</b> if multiple appointments can be selected simultaneously; otherwise, <b>false</b>.
</value>
</member>
<member name="P:DevExpress.XtraScheduler.SchedulerOptionsCustomization.AllowAppointmentResize">
<summary>
<para>Gets or set a value that specifies whether an end-user is allowed to change the time boundaries of appointments.
</para>
</summary>
<value>A <see cref="T:DevExpress.XtraScheduler.UsedAppointmentType"/> enumeration value that specifies to which appointment's type the action can be applied.
</value>
</member>
<member name="P:DevExpress.XtraScheduler.SchedulerOptionsCustomization.AllowDisplayAppointmentDependencyForm">
<summary>
<para>Gets or sets the option specifying whether the <b>Appointment Dependency</b> dialog can be invoked.
</para>
</summary>
<value>An <see cref="T:DevExpress.XtraScheduler.AllowDisplayAppointmentDependencyForm"/> enumeration member.
</value>
</member>
<member name="P:DevExpress.XtraScheduler.SchedulerOptionsCustomization.AllowDisplayAppointmentForm">
<summary>
<para>Gets or sets the option specifying whether the <b>Appointment Form</b> can be invoked.
</para>
</summary>
<value>An <see cref="T:DevExpress.XtraScheduler.AllowDisplayAppointmentForm"/> enumeration member.
</value>
</member>
<member name="P:DevExpress.XtraScheduler.SchedulerOptionsCustomization.AllowInplaceEditor">
<summary>
<para>Gets or sets a value that specifies whether an inplace editor can be activated for an appointment.
</para>
</summary>
<value>An <see cref="T:DevExpress.XtraScheduler.UsedAppointmentType"/> enumeration value that specifies the type of appointment which the action can be applied to.
</value>
</member>
<member name="M:DevExpress.XtraScheduler.SchedulerOptionsCustomization.Assign(DevExpress.Utils.Controls.BaseOptions)">
<summary>
<para>Copies all settings from the options object passed as the parameter to the current object.
</para>
</summary>
<param name="options">
A SchedulerOptionsCustomization object (which is the <see cref="T:DevExpress.Utils.Controls.BaseOptions"/> descendant) whose settings are assigned to the current object.
</param>
</member>
<member name="M:DevExpress.XtraScheduler.SchedulerOptionsCustomization.ToString">
<summary>
<para>Returns the textual representation of customization options.
</para>
</summary>
<returns>A <see cref="T:System.String"/> value which is the textual representation of customization options.
</returns>
</member>
<member name="T:DevExpress.XtraScheduler.TimeSlotCollection">
<summary>
<para>Represents a collection of time slots.
</para>
</summary>
</member>
<member name="M:DevExpress.XtraScheduler.TimeSlotCollection.#ctor">
<summary>
<para>Initializes a new instance of the TimeSlotCollection class with default settings.
</para>
</summary>
</member>
<member name="M:DevExpress.XtraScheduler.TimeSlotCollection.Add(System.TimeSpan,System.String)">
<summary>
<para>Appends a new time slot with the specified value and display name to the collection.
</para>
</summary>
<param name="val">
A <see cref="T:System.TimeSpan"/> value that specifies the value of the time slot. This value is assigned to the <see cref="P:DevExpress.XtraScheduler.TimeSlot.Value"/> property.
</param>
<param name="displayName">
A <see cref="T:System.String"/> value that specifies the display name of the time slot. This value is assigned to the <see cref="P:DevExpress.XtraScheduler.UserInterfaceObject.DisplayName"/> property and is displayed as a menu caption in the context menu.
</param>
<returns>An integer value indicating the position at which the new element was inserted.
</returns>
</member>
<member name="M:DevExpress.XtraScheduler.TimeSlotCollection.Add(System.TimeSpan,System.String,System.String)">
<summary>
<para>Appends a new time slot with the specified value, display name and menu caption to the collection.
</para>
</summary>
<param name="val">
A <see cref="T:System.TimeSpan"/> value that specifies the value of the time slot. This value is assigned to the <see cref="P:DevExpress.XtraScheduler.TimeSlot.Value"/> property.
</param>
<param name="displayName">
A <see cref="T:System.String"/> value that specifies the display name of the time slot. This value is assigned to the <see cref="P:DevExpress.XtraScheduler.UserInterfaceObject.DisplayName"/> property.
</param>
<param name="menuCaption">
A <see cref="T:System.String"/> value that specifies the menu caption of the time slot. This value is assigned to the <see cref="P:DevExpress.XtraScheduler.UserInterfaceObject.MenuCaption"/> property.
</param>
<returns>An integer value indicating the position at which the new element was inserted.
</returns>
</member>
<member name="M:DevExpress.XtraScheduler.TimeSlotCollection.GetMaxValue">
<summary>
<para>The method is unnecessary since the collection is ordered.
</para>
</summary>
<returns>A <see cref="T:System.TimeSpan"/> value representing the time interval.
</returns>
</member>
<member name="M:DevExpress.XtraScheduler.TimeSlotCollection.GetMinValue">
<summary>
<para>The method is unnecessary since the collection is ordered.
</para>
</summary>
<returns>A <see cref="T:System.TimeSpan"/> value representing the time interval.
</returns>
</member>
<member name="T:DevExpress.XtraScheduler.TimeSlot">
<summary>
<para>Represents an individual time slot item.
</para>
</summary>
</member>
<member name="M:DevExpress.XtraScheduler.TimeSlot.#ctor(System.TimeSpan,System.String,System.String)">
<summary>
<para>Initializes a new instance of the TimeSlot class with the specified value, display name and menu caption.
</para>
</summary>
<param name="value">
A <see cref="T:System.TimeSpan"/> value that specifies the value of the time slot. This value is assigned to the <see cref="P:DevExpress.XtraScheduler.TimeSlot.Value"/> property.
</param>
<param name="displayName">
A <see cref="T:System.String"/> value which represents the display name of the time slot. This value is assigned to the <see cref="P:DevExpress.XtraScheduler.UserInterfaceObject.DisplayName"/> property.
</param>
<param name="menuCaption">
A <see cref="T:System.String"/> value which represents the menu caption of the time slot. This value is assigned to the <see cref="P:DevExpress.XtraScheduler.UserInterfaceObject.MenuCaption"/> property.
</param>
</member>
<member name="M:DevExpress.XtraScheduler.TimeSlot.#ctor(System.TimeSpan,System.String)">
<summary>
<para>Initializes a new instance of the TimeSlot class with the specified value and display name.
</para>
</summary>
<param name="value">
A <see cref="T:System.TimeSpan"/> value that specifies the value of the time slot. This value is assigned to the <see cref="P:DevExpress.XtraScheduler.TimeSlot.Value"/> property.
</param>
<param name="displayName">
A <see cref="T:System.String"/> value which represents the display name of the time slot. This value is assigned to the <see cref="P:DevExpress.XtraScheduler.UserInterfaceObject.DisplayName"/> property.
</param>
</member>
<member name="M:DevExpress.XtraScheduler.TimeSlot.#ctor">
<summary>
<para>Initializes a new instance of the TimeSlot class with default settings.
</para>
</summary>
</member>
<member name="P:DevExpress.XtraScheduler.TimeSlot.Color">
<summary>
<para>Overrides the <see cref="P:DevExpress.XtraScheduler.UserInterfaceObject.Color"/> property.
</para>
</summary>
<value>A <see cref="T:System.Drawing.Color"/> value which specifies the object's color.
</value>
</member>
<member name="M:DevExpress.XtraScheduler.TimeSlot.ToString">
<summary>
<para>Returns the textual representation of the time slot.
</para>
</summary>
<returns>A <see cref="T:System.String"/> value which is the textual representation of the time slot.
</returns>
</member>
<member name="P:DevExpress.XtraScheduler.TimeSlot.Value">
<summary>
<para>Gets or sets the time interval which specifies the current time slot's value.
</para>
</summary>
<value>A <see cref="T:System.TimeSpan"/> object specifying the time slot's value.
</value>
</member>
<member name="T:DevExpress.XtraScheduler.SchedulerViewType">
<summary>
<para>Lists the view types for a scheduler.
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.SchedulerViewType.Day">
<summary>
<para>Specifies the <see cref="T:DevExpress.XtraScheduler.DayView"/>. This view lets end-users schedule and view appointments by <b>day</b>.
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.SchedulerViewType.Gantt">
<summary>
<para>Specifies the <see cref="T:DevExpress.XtraScheduler.GanttView"/>. This view lets end-users schedule and view appointments as tasks with dependencies and show information on task completion status.
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.SchedulerViewType.Month">
<summary>
<para>Specifies the <see cref="T:DevExpress.XtraScheduler.MonthView"/>. This view lets end-users schedule and view appointments across <b>several weeks</b>.
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.SchedulerViewType.Timeline">
<summary>
<para>Specifies the <see cref="T:DevExpress.XtraScheduler.TimelineView"/>. This view displays appointments as <b>horizontal bars along the timescales</b>, and provides end-users with a clearer overview for scheduling purposes.
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.SchedulerViewType.Week">
<summary>
<para>Specifies the <see cref="T:DevExpress.XtraScheduler.WeekView"/>. This view lets end-users schedule and view appointments by <b>week</b>.
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.SchedulerViewType.WorkWeek">
<summary>
<para>Specifies the <see cref="T:DevExpress.XtraScheduler.WorkWeekView"/>. This view displays appointments for the working days in a <b>particular week</b>.
</para>
</summary>
</member>
<member name="T:DevExpress.XtraScheduler.SchedulerGroupType">
<summary>
<para>Lists the grouping type used in the scheduler.
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.SchedulerGroupType.Date">
<summary>
<para><b>Grouping by dates</b>. Appointments are grouped by dates.
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.SchedulerGroupType.None">
<summary>
<para><b>No grouping</b> is applied.
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.SchedulerGroupType.Resource">
<summary>
<para><b>Grouping by resources</b>. Appointments are grouped by resources.
</para>
</summary>
</member>
<member name="T:DevExpress.XtraScheduler.DateSavingType">
<summary>
<para>Lists the ways in which the time for scheduled appointments can be saved.
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.DateSavingType.LocalTime">
<summary>
<para><para>The time for scheduled appointments is saved using the local time zone. Note that in this case if end-users living in different time zones are working with the same data, this may cause some inconsistencies in the scheduled events.</para>
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.DateSavingType.UTC">
<summary>
<para><para>The time for scheduled appointments is shifted to the first meridian (in UTC format) when it is saved. This approach allows inconsistencies to be avoided in scheduled events if end-users live in different time zones and work with the same data.</para>
</para>
</summary>
</member>
<member name="T:DevExpress.XtraScheduler.AppointmentStatusType">
<summary>
<para>Lists the statuses for appointments.
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.AppointmentStatusType.Busy">
<summary>
<para>This status means that a person is in the office but unavailable to others. The strip is colored blue.
<para>
</para>
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.AppointmentStatusType.Custom">
<summary>
<para>This status represents all custom statuses added to the <see cref="P:DevExpress.XtraScheduler.AppointmentStorage.Statuses"/> collection. Its color is specified by the <see cref="P:DevExpress.XtraScheduler.UserInterfaceObject.Color"/> property.
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.AppointmentStatusType.Free">
<summary>
<para>This status means that a person is in the office and available to others. The strip is colored white.
<para>
</para>
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.AppointmentStatusType.OutOfOffice">
<summary>
<para>This status means that a person is out of the office and unavailable to others. The strip color is close to Indian Red, #d95353.
<para>
</para>
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.AppointmentStatusType.Tentative">
<summary>
<para>This status means that a person is in the office and tentatively available to others. The strip is colored blue and has light diagonal stripes.
<para>
</para>
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.AppointmentStatusType.WorkingElsewhere">
<summary>
<para>This status means that a person is not in the office but is readily available for business contacts. The strip is colored with blue 75-percent hatch brush.
<para>
</para>
</para>
</summary>
</member>
<member name="T:DevExpress.XtraScheduler.WeekIntervalCollection">
<summary>
<para>Represents a collection that contains time intervals of a week's duration.
</para>
</summary>
</member>
<member name="M:DevExpress.XtraScheduler.WeekIntervalCollection.#ctor">
<summary>
<para>Initializes a new instance of the WeekIntervalCollection class with default settings.
</para>
</summary>
</member>
<member name="P:DevExpress.XtraScheduler.WeekIntervalCollection.CompressWeekend">
<summary>
<para>Gets or sets a value which specifies whether the weekend days (<b>Saturday</b> and <b>Sunday</b>) should always persist in the collection together.
</para>
</summary>
<value><b>true</b> to compress weekends; otherwise, <b>false</b>.
</value>
</member>
<member name="P:DevExpress.XtraScheduler.WeekIntervalCollection.FirstDayOfWeek">
<summary>
<para>Gets or sets the day which will be the first day of the week for the week interval collection.
</para>
</summary>
<value>A <see cref="T:System.DayOfWeek"/> enumeration value specifying the start day of the week.
</value>
</member>
<member name="T:DevExpress.XtraScheduler.TimeIntervalCollectionEx">
<summary>
<para>Represents an advanced collection of time intervals.
</para>
</summary>
</member>
<member name="M:DevExpress.XtraScheduler.TimeIntervalCollectionEx.#ctor">
<summary>
<para>Initializes a new instance of the TimeIntervalCollectionEx class with default settings.
</para>
</summary>
</member>
<member name="M:DevExpress.XtraScheduler.TimeIntervalCollectionEx.Contains(DevExpress.XtraScheduler.TimeInterval)">
<summary>
<para>Determines whether the collection contains the specified time interval.
</para>
</summary>
<param name="interval">
A <see cref="T:DevExpress.XtraScheduler.TimeInterval"/> object to locate in the collection.
</param>
<returns><b>true</b> if the collection contains the specified time interval; otherwise, <b>false</b>.
</returns>
</member>
<member name="M:DevExpress.XtraScheduler.TimeIntervalCollectionEx.Remove(DevExpress.XtraScheduler.TimeInterval)">
<summary>
<para>Overrides the corresponding method of the <see cref="T:DevExpress.XtraScheduler.TimeIntervalCollection"/> class.
</para>
</summary>
<param name="interval">
A <see cref="T:DevExpress.XtraScheduler.TimeInterval"/> object to remove from the collection.
</param>
<returns><b>true</b> if an item is successfully removed from the collection; <b>false</b> if a specified interval is <b>null</b>.
</returns>
</member>
<member name="T:DevExpress.XtraScheduler.TimeIntervalCollection">
<summary>
<para>Represents a collection of time intervals.
</para>
</summary>
</member>
<member name="M:DevExpress.XtraScheduler.TimeIntervalCollection.#ctor">
<summary>
<para>Initializes a new instance of the TimeIntervalCollection class with default settings.
</para>
</summary>
</member>
<member name="M:DevExpress.XtraScheduler.TimeIntervalCollection.Add(DevExpress.XtraScheduler.TimeInterval)">
<summary>
<para>Adds an item to the <b>TimeIntervalCollection</b>
</para>
</summary>
<param name="interval">
A <see cref="T:DevExpress.XtraScheduler.TimeInterval"/> object to add to the collection.
</param>
<returns>An integer value indicating the position at which the new element was inserted.
</returns>
</member>
<member name="M:DevExpress.XtraScheduler.TimeIntervalCollection.AddRange(System.Collections.ICollection)">
<summary>
<para>Adds all items from the specified collection of intervals to the <b>TimeIntervalCollection</b>.
</para>
</summary>
<param name="intervals">
A collection of <see cref="T:DevExpress.XtraScheduler.TimeInterval"/> objects to add.
</param>
</member>
<member name="M:DevExpress.XtraScheduler.TimeIntervalCollection.Clone">
<summary>
<para>Creates a copy of the current TimeIntervalCollection object.
</para>
</summary>
<returns>A TimeIntervalCollection object which is a copy of the current object.
</returns>
</member>
<member name="P:DevExpress.XtraScheduler.TimeIntervalCollection.Duration">
<summary>
<para>Returns the difference between the earliest and the latest time of the intervals in a time interval collection.
</para>
</summary>
<value>A <see cref="T:System.TimeSpan"/> value.
</value>
</member>
<member name="P:DevExpress.XtraScheduler.TimeIntervalCollection.End">
<summary>
<para>Gets the end date time of the time interval which finishes last in the TimeIntervalCollection.
</para>
</summary>
<value>A <see cref="T:System.DateTime"/> value representing the end date of the TimeIntervalCollection.
</value>
</member>
<member name="P:DevExpress.XtraScheduler.TimeIntervalCollection.Interval">
<summary>
<para>Returns a <b>TimeInterval</b> object representing a time span of the time interval collection.
</para>
</summary>
<value>A new <see cref="T:DevExpress.XtraScheduler.TimeInterval"/> object.
</value>
</member>
<member name="M:DevExpress.XtraScheduler.TimeIntervalCollection.SetContent(DevExpress.XtraScheduler.TimeInterval)">
<summary>
<para>Substitutes collection's content with the specified <b>TimeInterval</b> object.
</para>
</summary>
<param name="interval">
The <see cref="T:DevExpress.XtraScheduler.TimeInterval"/> object to be added to the collection.
</param>
</member>
<member name="M:DevExpress.XtraScheduler.TimeIntervalCollection.SetContent(DevExpress.XtraScheduler.TimeIntervalCollection)">
<summary>
<para>Substitutes collection's content with objects from the specified <b>TimeIntervalCollection</b>.
</para>
</summary>
<param name="coll">
The <see cref="T:DevExpress.XtraScheduler.TimeIntervalCollection"/> whose elements should be added to the collection.
</param>
</member>
<member name="M:DevExpress.XtraScheduler.TimeIntervalCollection.Shift(System.TimeSpan)">
<summary>
<para>Shifts the start and end time of all the time intervals within the collection by the specified amount.
</para>
</summary>
<param name="offset">
A <see cref="T:System.TimeSpan"/> value which specifies the time span which all the time intervals should be shifted by.
</param>
</member>
<member name="P:DevExpress.XtraScheduler.TimeIntervalCollection.Start">
<summary>
<para>Gets the earliest start date time from all the time intervals in the TimeIntervalCollection.
</para>
</summary>
<value>A <see cref="T:System.DateTime"/> value representing the start date of the TimeIntervalCollection.
</value>
</member>
<member name="T:DevExpress.XtraScheduler.SchedulerNotificationOptions">
<summary>
<para>Provides notification options for the Scheduler control.
</para>
</summary>
</member>
<member name="M:DevExpress.XtraScheduler.SchedulerNotificationOptions.Reset">
<summary>
<para>Resets all notification options to their default values.
</para>
</summary>
</member>
<member name="T:DevExpress.XtraScheduler.DayIntervalCollection">
<summary>
<para>Represents a collection that contains time intervals of the day duration.
</para>
</summary>
</member>
<member name="M:DevExpress.XtraScheduler.DayIntervalCollection.#ctor">
<summary>
<para>Initializes a new instance of the DayIntervalCollection class with default settings.
</para>
</summary>
</member>
<member name="T:DevExpress.XtraScheduler.FirstDayOfWeek">
<summary>
<para>Lists the days which can be used to specify the first day of the week.
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.FirstDayOfWeek.Friday">
<summary>
<para>The calendar week will start with <b>Friday</b>.
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.FirstDayOfWeek.Monday">
<summary>
<para>The calendar week will start with <b>Monday</b>.
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.FirstDayOfWeek.Saturday">
<summary>
<para>The calendar week will start with <b>Saturday</b>.
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.FirstDayOfWeek.Sunday">
<summary>
<para>The calendar week will start with <b>Sunday</b>.
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.FirstDayOfWeek.System">
<summary>
<para>The start day of the week will be obtained from the regional settings of the operating system.
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.FirstDayOfWeek.Thursday">
<summary>
<para>The calendar week will start with <b>Thursday</b>.
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.FirstDayOfWeek.Tuesday">
<summary>
<para>The calendar week will start with <b>Tuesday</b>.
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.FirstDayOfWeek.Wednesday">
<summary>
<para>The calendar week will start with <b>Wednesday</b>.
</para>
</summary>
</member>
<member name="T:DevExpress.XtraScheduler.WorkTimeInterval">
<summary>
<para>Represents a time interval that specifies the work time within a day.
</para>
</summary>
</member>
<member name="M:DevExpress.XtraScheduler.WorkTimeInterval.#ctor(System.TimeSpan,System.TimeSpan)">
<summary>
<para>Initializes a new instance of the WorkTimeInterval class with the specified start time and end time.
</para>
</summary>
<param name="start">
A <see cref="T:System.TimeSpan"/> value that specifies the start time of the interval. This value is assigned to the <see cref="P:DevExpress.XtraScheduler.TimeOfDayInterval.Start"/> property.
</param>
<param name="end">
A <see cref="T:System.TimeSpan"/> value that specifies the end time of the interval. This value is assigned to the <see cref="P:DevExpress.XtraScheduler.TimeOfDayInterval.End"/> property.
</param>
</member>
<member name="M:DevExpress.XtraScheduler.WorkTimeInterval.#ctor">
<summary>
<para>Initializes a new instance of the WorkTimeInterval class with default settings.
</para>
</summary>
</member>
<member name="P:DevExpress.XtraScheduler.WorkTimeInterval.WorkTime">
<summary>
<para>Gets the standard work time interval.
</para>
</summary>
<value>A <see cref="T:DevExpress.XtraScheduler.WorkTimeInterval"/> value representing the standard work time interval.
</value>
</member>
<member name="T:DevExpress.XtraScheduler.Native.TimeSpanStringConvertEventArgs">
<summary>
<para>Provides data for the <see cref="E:DevExpress.XtraScheduler.Native.HumanReadableTimeSpanHelper.ConvertToString"/> and <see cref="E:DevExpress.XtraScheduler.Native.HumanReadableTimeSpanHelper.ParseString"/> events.
</para>
</summary>
</member>
<member name="M:DevExpress.XtraScheduler.Native.TimeSpanStringConvertEventArgs.#ctor">
<summary>
<para>Initializes a new instance of the TimeSpanStringConvertEventArgs class with default settings.
</para>
</summary>
</member>
<member name="P:DevExpress.XtraScheduler.Native.TimeSpanStringConvertEventArgs.Handled">
<summary>
<para>Gets or sets whether an event was handled, if it was handled the default actions are not required.
</para>
</summary>
<value><b>true</b> if default conversion isn't required; otherwise, <b>false</b>.
</value>
</member>
<member name="P:DevExpress.XtraScheduler.Native.TimeSpanStringConvertEventArgs.StringValue">
<summary>
<para>Gets or sets the string used when converting a <see cref="T:System.TimeSpan"/> value to a string or vice versa.
</para>
</summary>
<value>A <see cref="T:System.String"/> which represents the string value to be converted from or to.
</value>
</member>
<member name="P:DevExpress.XtraScheduler.Native.TimeSpanStringConvertEventArgs.TimeSpanValue">
<summary>
<para>Gets or sets the <see cref="T:System.TimeSpan"/> value used when converting a <see cref="T:System.TimeSpan"/> value to a string or vice versa.
</para>
</summary>
<value>A <see cref="T:System.TimeSpan"/> which represents the string value to be converted from or to.
</value>
</member>
<member name="T:DevExpress.XtraScheduler.TimeOfDayInterval">
<summary>
<para>Represents a time interval within a day.
</para>
</summary>
</member>
<member name="M:DevExpress.XtraScheduler.TimeOfDayInterval.#ctor(System.TimeSpan,System.TimeSpan)">
<summary>
<para>Initializes a new instance of the <see cref="T:DevExpress.XtraScheduler.TimeOfDayInterval"/> class with the specified start time and end time.
</para>
</summary>
<param name="start">
A <see cref="T:System.TimeSpan"/> value which specifies the start time of the interval. This value is assigned to the <see cref="P:DevExpress.XtraScheduler.TimeOfDayInterval.Start"/> property.
</param>
<param name="end">
A <see cref="T:System.TimeSpan"/> value which specifies the end time of the interval. This value is assigned to the <see cref="P:DevExpress.XtraScheduler.TimeOfDayInterval.End"/> property.
</param>
</member>
<member name="M:DevExpress.XtraScheduler.TimeOfDayInterval.#ctor">
<summary>
<para>Initializes a new instance of the TimeOfDayInterval class with default settings.
</para>
</summary>
</member>
<member name="M:DevExpress.XtraScheduler.TimeOfDayInterval.Assign(DevExpress.XtraScheduler.TimeOfDayInterval)">
<summary>
<para>Copies all settings from the object passed as the parameter to the current object.
</para>
</summary>
<param name="source">
A TimeOfDayInterval object whose settings are assigned to the current object.
</param>
</member>
<member name="E:DevExpress.XtraScheduler.TimeOfDayInterval.Changed">
<summary>
<para>Fires when the <b>TimeOfDayInterval</b> is changed.
</para>
</summary>
</member>
<member name="E:DevExpress.XtraScheduler.TimeOfDayInterval.Changing">
<summary>
<para> [To be supplied] </para>
</summary>
</member>
<member name="M:DevExpress.XtraScheduler.TimeOfDayInterval.Clone">
<summary>
<para>Creates a copy of the current TimeOfDayInterval object.
</para>
</summary>
<returns>A TimeOfDayInterval object which is a copy of the current object.
</returns>
</member>
<member name="M:DevExpress.XtraScheduler.TimeOfDayInterval.Contains(System.TimeSpan)">
<summary>
<para>Determines whether the time of day interval contains the specified time.
</para>
</summary>
<param name="time">
A <see cref="T:System.TimeSpan"/> object to locate in the time of day interval.
</param>
<returns><b>true</b> if the time of day interval contains the specified time; otherwise, <b>false</b>.
</returns>
</member>
<member name="P:DevExpress.XtraScheduler.TimeOfDayInterval.Day">
<summary>
<para>Gets the time interval of a day.
</para>
</summary>
<value>A <see cref="T:DevExpress.XtraScheduler.TimeOfDayInterval"/> value representing the day interval.
</value>
</member>
<member name="P:DevExpress.XtraScheduler.TimeOfDayInterval.Duration">
<summary>
<para>Gets the duration of the time of day interval.
</para>
</summary>
<value>A <see cref="T:System.TimeSpan"/> value representing the duration of the time of day interval.
</value>
</member>
<member name="P:DevExpress.XtraScheduler.TimeOfDayInterval.Empty">
<summary>
<para>Returns an empty time of day interval.
</para>
</summary>
<value>A <see cref="T:DevExpress.XtraScheduler.TimeOfDayInterval"/> value representing an empty time of day interval.
</value>
</member>
<member name="P:DevExpress.XtraScheduler.TimeOfDayInterval.End">
<summary>
<para>Gets or sets the end time of the time of day interval.
</para>
</summary>
<value>A <see cref="T:System.TimeSpan"/> value representing the end of the time of day interval.
</value>
</member>
<member name="M:DevExpress.XtraScheduler.TimeOfDayInterval.Equals(System.Object)">
<summary>
<para>Determines whether the specified object is equal to the current TimeOfDayInterval instance.
</para>
</summary>
<param name="obj">
The object to compare with the current object.
</param>
<returns><b>true</b> if the specified object is equal to the current TimeOfDayInterval instance; otherwise <b>false</b>.
</returns>
</member>
<member name="M:DevExpress.XtraScheduler.TimeOfDayInterval.GetHashCode">
<summary>
<para>Gets the hash code (the number) that corresponds to the value of the current TimeOfDayInterval object.
</para>
</summary>
<returns>An integer value representing the hash code for the current object.
</returns>
</member>
<member name="M:DevExpress.XtraScheduler.TimeOfDayInterval.Intersect(DevExpress.XtraScheduler.TimeOfDayInterval,DevExpress.XtraScheduler.TimeOfDayInterval)">
<summary>
<para>Returns a time-of-day interval which is the intersection of the two specified time-of-day intervals.
</para>
</summary>
<param name="interval1">
A <see cref="T:DevExpress.XtraScheduler.TimeOfDayInterval"/> object which represents the first time-of-day interval.
</param>
<param name="interval2">
A <see cref="T:DevExpress.XtraScheduler.TimeOfDayInterval"/> object which represents the second time-of-day interval.
</param>
<returns>A <see cref="T:DevExpress.XtraScheduler.TimeOfDayInterval"/> object representing the intersection of the two time-of-day intervals. If the two specified time-of-day intervals don't intersect, the <see cref="P:DevExpress.XtraScheduler.TimeOfDayInterval.Empty"/> value will be returned.
</returns>
</member>
<member name="M:DevExpress.XtraScheduler.TimeOfDayInterval.IntersectsWithExcludingBounds(DevExpress.XtraScheduler.TimeOfDayInterval)">
<summary>
<para>Checks if the current time of day interval intersects with the specified time of day interval. The boundaries of the time intervals are excluded from the check.
</para>
</summary>
<param name="interval">
A <see cref="T:DevExpress.XtraScheduler.TimeOfDayInterval"/> object which represents the time of day interval to be checked.
</param>
<returns><b>true</b> if the two time of day intervals intersect; otherwise, <b>false</b>.
</returns>
</member>
<member name="P:DevExpress.XtraScheduler.TimeOfDayInterval.Start">
<summary>
<para>Gets or sets the start time of the time of day interval.
</para>
</summary>
<value>A <see cref="T:System.TimeSpan"/> value representing the start of the time of day interval.
</value>
</member>
<member name="M:DevExpress.XtraScheduler.TimeOfDayInterval.ToString">
<summary>
<para>Returns the textual representation of the time-of-day interval.
</para>
</summary>
<returns>A <see cref="T:System.String"/> value which is the textual representation of the time-of-day interval.
</returns>
</member>
<member name="M:DevExpress.XtraScheduler.TimeOfDayInterval.ToTimeInterval">
<summary>
<para>Converts the <see cref="T:DevExpress.XtraScheduler.TimeOfDayInterval"/> value to the <see cref="T:DevExpress.XtraScheduler.TimeInterval"/> type.
</para>
</summary>
<returns>A <see cref="T:DevExpress.XtraScheduler.TimeInterval"/> value representing the time interval which corresponds to this "time of day" interval.
</returns>
</member>
<member name="M:DevExpress.XtraScheduler.TimeOfDayInterval.ToTimeInterval(System.DateTime)">
<summary>
<para>Converts the <see cref="T:DevExpress.XtraScheduler.TimeOfDayInterval"/> value to the <see cref="T:DevExpress.XtraScheduler.TimeInterval"/> type starting from the specified date.
</para>
</summary>
<param name="date">
A <see cref="T:System.DateTime"/> value representing the start date for the new time interval value.
</param>
<returns>A <see cref="T:DevExpress.XtraScheduler.TimeInterval"/> value representing the time interval which corresponds to this "time of day" interval.
</returns>
</member>
<member name="M:DevExpress.XtraScheduler.TimeOfDayInterval.Union(DevExpress.XtraScheduler.TimeOfDayInterval,DevExpress.XtraScheduler.TimeOfDayInterval)">
<summary>
<para>Returns a time of day interval which is composed of two specified time of day intervals.
</para>
</summary>
<param name="interval1">
A <see cref="T:DevExpress.XtraScheduler.TimeOfDayInterval"/> object which represents the first time of day interval to be united.
</param>
<param name="interval2">
A <see cref="T:DevExpress.XtraScheduler.TimeOfDayInterval"/> object which represents the second time of day interval to be united.
</param>
<returns>A <see cref="T:DevExpress.XtraScheduler.TimeOfDayInterval"/> object representing a union of two time of day intervals.
</returns>
</member>
<member name="T:DevExpress.XtraScheduler.ResourceMappingInfo">
<summary>
<para>Provides information on the mapping of the resource's properties to appropriate data fields.
</para>
</summary>
</member>
<member name="M:DevExpress.XtraScheduler.ResourceMappingInfo.#ctor">
<summary>
<para>Initializes a new instance of the ResourceMappingInfo class with the default settings.
</para>
</summary>
</member>
<member name="P:DevExpress.XtraScheduler.ResourceMappingInfo.Caption">
<summary>
<para>Gets or sets the data field which a resource's <see cref="P:DevExpress.XtraScheduler.Resource.Caption"/> property is bound to.
</para>
</summary>
<value>A <see cref="T:System.String"/> value that specifies the name of the bound data field.
</value>
</member>
<member name="P:DevExpress.XtraScheduler.ResourceMappingInfo.Color">
<summary>
<para>Gets or sets the data field which a resource's <see cref="P:DevExpress.XtraScheduler.Resource.Color"/> property is bound to.
</para>
</summary>
<value>A <see cref="T:System.String"/> value that specifies the name of the bound data field.
</value>
</member>
<member name="M:DevExpress.XtraScheduler.ResourceMappingInfo.GetRequiredMappingNames">
<summary>
<para>Gets an array containing the names of all the ResourceMappingInfo object's properties that have to be bound to corresponding data fields.
</para>
</summary>
<returns>An array of strings that represent the names of the properties that have to be bound to data.
</returns>
</member>
<member name="P:DevExpress.XtraScheduler.ResourceMappingInfo.Id">
<summary>
<para>Gets or sets the data field which a resource's <see cref="P:DevExpress.XtraScheduler.Resource.Id"/> property is bound to.
</para>
</summary>
<value>A <see cref="T:System.String"/> value that specifies the name of the bound data field.
</value>
</member>
<member name="P:DevExpress.XtraScheduler.ResourceMappingInfo.Image">
<summary>
<para>Gets or sets the data field which a resource's <see cref="P:DevExpress.XtraScheduler.Resource.Image"/> property is bound to.
</para>
</summary>
<value>A <see cref="T:System.String"/> value that specifies the name of the bound data field.
</value>
</member>
<member name="P:DevExpress.XtraScheduler.ResourceMappingInfo.ParentId">
<summary>
<para>Gets or sets the data field which a resource's ParentId property is bound to.
</para>
</summary>
<value>A <see cref="T:System.String"/> value that specifies the name of the bound data field.
</value>
</member>
<member name="T:DevExpress.XtraScheduler.ResourceCollection">
<summary>
<para>Represents a resource collection.
</para>
</summary>
</member>
<member name="M:DevExpress.XtraScheduler.ResourceCollection.#ctor(DevExpress.XtraScheduler.SchedulerStorageBase)">
<summary>
<para>Initializes a new instance of the <b>ResourceCollection</b> class with the specified scheduler storage.
</para>
</summary>
<param name="storage">
A <see cref="T:DevExpress.XtraScheduler.SchedulerStorageBase"/> value which represents the scheduler storage of the resources collection. This value is assigned to the <see cref="P:DevExpress.XtraScheduler.ResourceCollection.Storage"/> property.
</param>
</member>
<member name="M:DevExpress.XtraScheduler.ResourceCollection.#ctor">
<summary>
<para>Initializes a new instance of the ResourceCollection class with default settings.
</para>
</summary>
</member>
<member name="M:DevExpress.XtraScheduler.ResourceCollection.AddRange(System.Collections.ICollection)">
<summary>
<para>Adds a collection of resources to the end of the collection.
</para>
</summary>
<param name="collection">
A <see cref="T:System.Collections.ICollection"/> object which represents the collection of resources to append to the collection.
</param>
</member>
<member name="M:DevExpress.XtraScheduler.ResourceCollection.ReadXml(System.String)">
<summary>
<para>Reads the settings of the resources from the specified XML file.
</para>
</summary>
<param name="fileName">
A <see cref="T:System.String"/> value specifying the path to the file from which resources should be read. If an empty string is specified, an exception is raised.
</param>
</member>
<member name="M:DevExpress.XtraScheduler.ResourceCollection.ReadXml(System.IO.Stream)">
<summary>
<para>Reads the settings of the resources from the specified stream.
</para>
</summary>
<param name="stream">
A <see cref="T:System.IO.Stream"/> descendant from which resources are read. If <b>null</b> (<b>Nothing</b> in Visual Basic), an exception is raised.
</param>
</member>
<member name="P:DevExpress.XtraScheduler.ResourceCollection.Storage">
<summary>
<para>Gets the storage which owns the current collection.
</para>
</summary>
<value>A <see cref="T:DevExpress.XtraScheduler.SchedulerStorageBase"/> object which owns the current collection.
</value>
</member>
<member name="M:DevExpress.XtraScheduler.ResourceCollection.WriteXml(System.IO.Stream)">
<summary>
<para>Saves all the resources within the collection to the specified stream.
</para>
</summary>
<param name="stream">
A <see cref="T:System.IO.Stream"/> descendant to which the resources should be written. If <b>null</b> (<b>Nothing</b> in Visual Basic), an exception is raised.
</param>
</member>
<member name="M:DevExpress.XtraScheduler.ResourceCollection.WriteXml(System.String)">
<summary>
<para>Saves all the resources within the collection to an XML file.
</para>
</summary>
<param name="fileName">
A <see cref="T:System.String"/> value specifying the path to the file where the resources should be written. If an empty string is specified, an exception is raised.
</param>
</member>
<member name="T:DevExpress.XtraScheduler.Resource">
<summary>
<para>Represents a resource persisted in a data store.
</para>
</summary>
</member>
<member name="M:DevExpress.XtraScheduler.Resource.#ctor(System.Object,System.String)">
<summary>
<para>Initializes a new instance of the Resource class with the specified caption and ID.
</para>
</summary>
<param name="id">
An <see cref="T:System.Object"/> value that specifies the ID of the resource. This value is assigned to the <see cref="P:DevExpress.XtraScheduler.Resource.Id"/> property.
</param>
<param name="caption">
A <see cref="T:System.String"/> value that specifies the caption of the resource. This value is assigned to the <see cref="P:DevExpress.XtraScheduler.Resource.Caption"/> property.
</param>
</member>
<member name="M:DevExpress.XtraScheduler.Resource.#ctor">
<summary>
<para>Initializes a new instance of the Resource class with default settings.
</para>
</summary>
</member>
<member name="M:DevExpress.XtraScheduler.Resource.#ctor(System.Object,System.String,System.Object)">
<summary>
<para>Initializes a new instance of the Resource class with the specified caption and ID.
</para>
</summary>
<param name="id">
An <see cref="T:System.Object"/> value that specifies the ID of the resource. This value is assigned to the <see cref="P:DevExpress.XtraScheduler.Resource.Id"/> property.
</param>
<param name="caption">
A <see cref="T:System.String"/> value that specifies the caption of the resource. This value is assigned to the <see cref="P:DevExpress.XtraScheduler.Resource.Caption"/> property.
</param>
<param name="parentId">
An object that is the identifier of the parent resource in tree-like resource hierarchy.
</param>
</member>
<member name="P:DevExpress.XtraScheduler.Resource.Caption">
<summary>
<para>Gets or sets the resource's caption.
</para>
</summary>
<value>A <see cref="T:System.String"/> value specifying the resource's caption.
</value>
</member>
<member name="P:DevExpress.XtraScheduler.Resource.Color">
<summary>
<para>Gets or sets the color associated with the resource.
</para>
</summary>
<value>A <see cref="T:System.Drawing.Color"/> structure that specifies the resource's color.
</value>
</member>
<member name="P:DevExpress.XtraScheduler.Resource.Empty">
<summary>
<para>Returns an empty resource.
</para>
</summary>
<value>A Resource value representing an empty resource.
</value>
</member>
<member name="M:DevExpress.XtraScheduler.Resource.FromXml(System.String)">
<summary>
<para>Reconstructs a resource from an XML encoding.
</para>
</summary>
<param name="val">
A <see cref="T:System.String"/> value that specifies the XML encoding to use to reconstruct the resource object.
</param>
</member>
<member name="M:DevExpress.XtraScheduler.Resource.GetRow(DevExpress.XtraScheduler.SchedulerStorageBase)">
<summary>
<para>Provides access to the data record for the current resource.
</para>
</summary>
<param name="storage">
A <see cref="T:DevExpress.XtraScheduler.SchedulerStorageBase"/> instance that provides data for the resource.
</param>
<returns>A data source object that contains current resource data.
</returns>
</member>
<member name="M:DevExpress.XtraScheduler.Resource.GetValue(DevExpress.XtraScheduler.SchedulerStorageBase,System.String)">
<summary>
<para>Obtains the value of the specific field in the current appointment data record supplied by the specified storage object.
</para>
</summary>
<param name="storage">
A <see cref="T:DevExpress.XtraScheduler.SchedulerStorageBase"/> instance that provides data for the appointment.
</param>
<param name="columnName">
A <see cref="T:System.String"/>, representing the data field's name.
</param>
<returns>A <see cref="T:System.Object"/>, representing the field's contents.
</returns>
</member>
<member name="P:DevExpress.XtraScheduler.Resource.Id">
<summary>
<para>Gets the resource's unique identifier.
</para>
</summary>
<value>A <see cref="T:System.Object"/> value that represents the resource's unique identifier.
</value>
</member>
<member name="P:DevExpress.XtraScheduler.Resource.Image">
<summary>
<para>Gets or sets the resource's image.
</para>
</summary>
<value>A <see cref="T:System.Drawing.Image"/> value specifying the resource's image.
</value>
</member>
<member name="M:DevExpress.XtraScheduler.Resource.MatchIds(DevExpress.XtraScheduler.Resource,DevExpress.XtraScheduler.Resource)">
<summary>
<para>Checks whether the specified resources are identical (or if either of them is an empty resource, see the <see cref="P:DevExpress.XtraScheduler.Resource.Empty"/> property).
</para>
</summary>
<param name="res1">
A <see cref="T:DevExpress.XtraScheduler.Resource"/> object that represents the first resource to compare.
</param>
<param name="res2">
A <see cref="T:DevExpress.XtraScheduler.Resource"/> object that represents the second resource to compare.
</param>
<returns><b>true</b> if the two specified resources are identical or either of them is an <see cref="P:DevExpress.XtraScheduler.Resource.Empty"/> resource; otherwise, <b>false</b>.
</returns>
</member>
<member name="P:DevExpress.XtraScheduler.Resource.ParentId">
<summary>
<para>Gets or sets the Id of the parent resource if resources form a tree-like hierarchy.
</para>
</summary>
<value>An object that is the resource identifier.
</value>
</member>
<member name="M:DevExpress.XtraScheduler.Resource.SetValue(DevExpress.XtraScheduler.SchedulerStorageBase,System.String,System.Object)">
<summary>
<para>Performs a transaction to change the value of the specific field in the current resource data record supplied by the specified storage object.
</para>
</summary>
<param name="storage">
A <see cref="T:DevExpress.XtraScheduler.SchedulerStorage"/> instance that stores data for the resource.
</param>
<param name="columnName">
A <see cref="T:System.String"/>, representing the data field's name.
</param>
<param name="val">
A <see cref="T:System.Object"/>, representing the new value of the field.
</param>
</member>
<member name="M:DevExpress.XtraScheduler.Resource.ToXml">
<summary>
<para>Creates an XML encoding of a resource.
</para>
</summary>
<returns>A <see cref="T:System.String"/> value that represents an XML encoding of a resource.
</returns>
</member>
<member name="P:DevExpress.XtraScheduler.Resource.Visible">
<summary>
<para>Gets or sets whether the resource is visible.
</para>
</summary>
<value><b>true</b> if the resource is visible; otherwise, <b>false</b>.
</value>
</member>
<member name="T:DevExpress.XtraScheduler.ReminderEventHandler">
<summary>
<para>Represents a method that will handle the <see cref="E:DevExpress.XtraScheduler.SchedulerStorageBase.ReminderAlert"/> event.
</para>
</summary>
</member>
<member name="M:DevExpress.XtraScheduler.ReminderEventHandler.Invoke(System.Object,DevExpress.XtraScheduler.ReminderEventArgs)">
<summary>
<para>Represents a method that will handle the <see cref="E:DevExpress.XtraScheduler.SchedulerStorageBase.ReminderAlert"/> event.
</para>
</summary>
<param name="sender">
The event source. This parameter identifies the <see cref="T:DevExpress.XtraScheduler.SchedulerStorage"/> which raised the event.
</param>
<param name="e">
A <see cref="T:DevExpress.XtraScheduler.ReminderEventArgs"/> object which contains event data.
</param>
</member>
<member name="T:DevExpress.XtraScheduler.ReminderEventArgs">
<summary>
<para>Provides data for the <see cref="E:DevExpress.XtraScheduler.SchedulerStorageBase.ReminderAlert"/> event.
</para>
</summary>
</member>
<member name="M:DevExpress.XtraScheduler.ReminderEventArgs.#ctor(DevExpress.XtraScheduler.ReminderAlertNotificationCollection)">
<summary>
<para>Initializes a new instance of the ReminderEventArgs class with the specified settings.
</para>
</summary>
<param name="alertNotifications">
A <see cref="T:DevExpress.XtraScheduler.ReminderAlertNotificationCollection"/> object which represents the reminder's alert notifications. This value is assigned to the <see cref="P:DevExpress.XtraScheduler.ReminderEventArgs.AlertNotifications"/> property.
</param>
</member>
<member name="P:DevExpress.XtraScheduler.ReminderEventArgs.AlertNotifications">
<summary>
<para>Gets any reminders currently triggered.
</para>
</summary>
<value>A <see cref="T:DevExpress.XtraScheduler.ReminderAlertNotificationCollection"/> object which holds a collection of notifications.
</value>
</member>
<member name="T:DevExpress.XtraScheduler.ReminderCollection">
<summary>
<para>Represents a collection of reminders.
</para>
</summary>
</member>
<member name="M:DevExpress.XtraScheduler.ReminderCollection.#ctor">
<summary>
<para>Initializes a new instance of the ReminderCollection class with default settings.
</para>
</summary>
</member>
<member name="T:DevExpress.XtraScheduler.Reminder">
<summary>
<para>Represents a reminder for a non-recurring appointment.
</para>
</summary>
</member>
<member name="P:DevExpress.XtraScheduler.Reminder.Appointment">
<summary>
<para>Gets the appointment which the reminder is applied to.
</para>
</summary>
<value>An <see cref="T:DevExpress.XtraScheduler.Appointment"/> object which represents the appointment which the reminder is applied to.
</value>
</member>
<member name="M:DevExpress.XtraScheduler.Reminder.FromXml(System.String)">
<summary>
<para>Reconstructs a reminder from an XML encoding.
</para>
</summary>
<param name="val">
A <see cref="T:System.String"/> value that specifies the XML encoding to use to reconstruct the reminder object.
</param>
</member>
<member name="P:DevExpress.XtraScheduler.Reminder.Subject">
<summary>
<para>Gets the subject text of the appointment which the reminder is applied to.
</para>
</summary>
<value>A <see cref="T:System.String"/> value that specifies the appointment's subject text.
</value>
</member>
<member name="M:DevExpress.XtraScheduler.Reminder.ToXml">
<summary>
<para>This method is obsolete. Use the <see cref="M:DevExpress.XtraScheduler.Xml.ReminderCollectionXmlPersistenceHelper.CreateSaveInstance"/> method instead.
</para>
</summary>
<returns>
</returns>
</member>
<member name="T:DevExpress.XtraScheduler.PersistentObjectEventHandler">
<summary>
<para>Represents a method that will handle the <b>persistent object</b> events of the <see cref="T:DevExpress.XtraScheduler.SchedulerStorage"/>.
</para>
</summary>
</member>
<member name="M:DevExpress.XtraScheduler.PersistentObjectEventHandler.Invoke(System.Object,DevExpress.XtraScheduler.PersistentObjectEventArgs)">
<summary>
<para>Represents a method that will handle the <b>persistent object</b> events of the <see cref="T:DevExpress.XtraScheduler.SchedulerStorage"/>.
</para>
</summary>
<param name="sender">
The event source. This parameter identifies the <see cref="T:DevExpress.XtraScheduler.SchedulerStorage"/> which raised the event.
</param>
<param name="e">
A <see cref="T:DevExpress.XtraScheduler.PersistentObjectEventArgs"/> object which contains event data.
</param>
</member>
<member name="T:DevExpress.XtraScheduler.PersistentObjectEventArgs">
<summary>
<para>Provides data for the <b>persistent object</b> events of the <see cref="T:DevExpress.XtraScheduler.SchedulerStorage"/>.
</para>
</summary>
</member>
<member name="M:DevExpress.XtraScheduler.PersistentObjectEventArgs.#ctor(DevExpress.XtraScheduler.PersistentObject)">
<summary>
<para>Initializes a new instance of the PersistentObjectEventArgs class with the specified settings.
</para>
</summary>
<param name="obj">
A <see cref="T:DevExpress.XtraScheduler.PersistentObject"/> value which represents the event's persistent object. This value is assigned to the <see cref="P:DevExpress.XtraScheduler.PersistentObjectEventArgs.Object"/> property.
</param>
</member>
<member name="P:DevExpress.XtraScheduler.PersistentObjectEventArgs.Object">
<summary>
<para>Gets the persistent object which the event was raised for.
</para>
</summary>
<value>A <see cref="T:DevExpress.XtraScheduler.PersistentObject"/> which represents the object that the event was raised for.
</value>
</member>
<member name="T:DevExpress.XtraScheduler.PersistentObject">
<summary>
<para>Represents a persistent object.
</para>
</summary>
</member>
<member name="M:DevExpress.XtraScheduler.PersistentObject.BeginUpdate">
<summary>
<para>Locks the PersistentObject object by disallowing visual updates until the <b>EndUpdate</b> or <b>CancelUpdate</b> method is called.
</para>
</summary>
</member>
<member name="M:DevExpress.XtraScheduler.PersistentObject.CancelUpdate">
<summary>
<para>Unlocks the PersistentObject object after it has been locked by the <b>BeginUpdate</b> method, without causing an immediate visual update.
</para>
</summary>
</member>
<member name="P:DevExpress.XtraScheduler.PersistentObject.CustomFields">
<summary>
<para>Gets the collection of custom fields bound to the persistent object.
</para>
</summary>
<value>A <see cref="T:DevExpress.XtraScheduler.CustomFieldCollection"/> object representing the collection of the persistent object's custom fields.
</value>
</member>
<member name="M:DevExpress.XtraScheduler.PersistentObject.Delete">
<summary>
<para>Deletes the persistent object from the collection to which it belongs.
</para>
</summary>
</member>
<member name="M:DevExpress.XtraScheduler.PersistentObject.Dispose">
<summary>
<para>Disposes of the PersistentObject object.
</para>
</summary>
</member>
<member name="M:DevExpress.XtraScheduler.PersistentObject.EndUpdate">
<summary>
<para>Unlocks the PersistentObject object after a call to the <b>BeginUpdate</b> method and causes an immediate visual update.
</para>
</summary>
</member>
<member name="M:DevExpress.XtraScheduler.PersistentObject.FromXml(System.String)">
<summary>
<para>Reconstructs a persistent object from an XML encoding.
</para>
</summary>
<param name="val">
A <see cref="T:System.String"/> value that specifies the XML encoding to use to reconstruct the persistent object.
</param>
</member>
<member name="M:DevExpress.XtraScheduler.PersistentObject.GetRow(DevExpress.XtraScheduler.SchedulerStorageBase)">
<summary>
<para>Provides access to the data record for the current <see cref="T:DevExpress.XtraScheduler.PersistentObject"/> instance.
</para>
</summary>
<param name="storage">
A <see cref="T:DevExpress.XtraScheduler.SchedulerStorage"/> instance that provides an object with data.
</param>
<returns>A data row object (<see cref="T:System.Data.DataRowView"/>) that contains current object data.
</returns>
</member>
<member name="M:DevExpress.XtraScheduler.PersistentObject.GetSourceObject(DevExpress.XtraScheduler.SchedulerStorageBase)">
<summary>
<para>Returns the object that contains information associated with the current persistent object.
</para>
</summary>
<param name="storage">
A <see cref="T:DevExpress.XtraScheduler.SchedulerStorageBase"/> object that represents the storage control which owns the persistent object.
</param>
<returns>A <see cref="T:System.Object"/> that is the data source object which contains information on the persistent object.
</returns>
</member>
<member name="M:DevExpress.XtraScheduler.PersistentObject.GetValue(DevExpress.XtraScheduler.SchedulerStorageBase,System.String)">
<summary>
<para>Obtains the value of the specific field in the data record for the current <see cref="T:DevExpress.XtraScheduler.PersistentObject"/>, supplied by the specified storage object.
</para>
</summary>
<param name="storage">
A <see cref="T:DevExpress.XtraScheduler.SchedulerStorageBase"/> class instance that stores the data.
</param>
<param name="columnName">
A <see cref="T:System.String"/>, representing the data field's name.
</param>
<returns>A <see cref="T:System.Object"/>, representing the field's contents.
</returns>
</member>
<member name="P:DevExpress.XtraScheduler.PersistentObject.IsUpdateLocked">
<summary>
<para>Gets whether the persistent object is locked while it is being updated.
</para>
</summary>
<value><b>true</b> if the persistent object is locked; otherwise, <b>false</b>.
</value>
</member>
<member name="M:DevExpress.XtraScheduler.PersistentObject.SetValue(DevExpress.XtraScheduler.SchedulerStorageBase,System.String,System.Object)">
<summary>
<para>Performs a transaction to change the value of the specific field in the current <see cref="T:DevExpress.XtraScheduler.PersistentObject"/> data record supplied by the specified storage object.
</para>
</summary>
<param name="storage">
A <see cref="T:DevExpress.XtraScheduler.SchedulerStorageBase"/> instance that stores data for the object.
</param>
<param name="columnName">
A <see cref="T:System.String"/>, representing the data field's name.
</param>
<param name="val">
A <see cref="T:System.Object"/>, representing the new value of the field.
</param>
</member>
<member name="P:DevExpress.XtraScheduler.PersistentObject.Tag">
<summary>
<para>Gets or sets the data associated with the persistent object.
</para>
</summary>
<value>A <see cref="T:System.Object"/> containing the information which is associated with the persistent object.
</value>
</member>
<member name="M:DevExpress.XtraScheduler.PersistentObject.ToXml">
<summary>
<para>Creates an XML encoding of the persistent object.
</para>
</summary>
<returns>A <see cref="T:System.String"/> value that represents an XML encoding of the persistent object.
</returns>
</member>
<member name="T:DevExpress.XtraScheduler.DateNavigatorQueryActiveViewTypeEventArgs">
<summary>
<para>Provides data for the <see cref="E:DevExpress.XtraScheduler.SchedulerControl.DateNavigatorQueryActiveViewType"/> and <see cref="E:DevExpress.Xpf.Scheduler.SchedulerControl.DateNavigatorQueryActiveViewType"/> events.
</para>
</summary>
</member>
<member name="M:DevExpress.XtraScheduler.DateNavigatorQueryActiveViewTypeEventArgs.#ctor(DevExpress.XtraScheduler.SchedulerViewType,DevExpress.XtraScheduler.SchedulerViewType,DevExpress.XtraScheduler.DayIntervalCollection)">
<summary>
<para>Initializes a new instance of the DateNavigatorQueryActiveViewTypeEventArgs class with the specified settings.
</para>
</summary>
<param name="oldViewType">
A <see cref="T:DevExpress.XtraScheduler.SchedulerViewType"/> enumerator member that specifies the previous view of the scheduler. This value is assigned to the <see cref="P:DevExpress.XtraScheduler.DateNavigatorQueryActiveViewTypeEventArgs.OldViewType"/> property.
</param>
<param name="newViewType">
A <see cref="T:DevExpress.XtraScheduler.SchedulerViewType"/> enumerator member that specifies the new view of the scheduler. This value is assigned to the <see cref="P:DevExpress.XtraScheduler.DateNavigatorQueryActiveViewTypeEventArgs.NewViewType"/> property.
</param>
<param name="selectedDays">
A <see cref="T:DevExpress.XtraScheduler.DayIntervalCollection"/> object specifying the dates selected in the DateNavigator control.
</param>
</member>
<member name="P:DevExpress.XtraScheduler.DateNavigatorQueryActiveViewTypeEventArgs.NewViewType">
<summary>
<para>Gets or sets the type of the view to be used by the scheduler to show its data after the date range selected in the bound DateNavigator has been changed.
</para>
</summary>
<value>A <see cref="T:DevExpress.XtraScheduler.SchedulerViewType"/> enumerator member.
</value>
</member>
<member name="P:DevExpress.XtraScheduler.DateNavigatorQueryActiveViewTypeEventArgs.OldViewType">
<summary>
<para>Gets the type of the view used by the scheduler to show its data before the date range selected in the bound DateNavigator is changed.
</para>
</summary>
<value>A <see cref="T:DevExpress.XtraScheduler.SchedulerViewType"/> enumerator member.
</value>
</member>
<member name="P:DevExpress.XtraScheduler.DateNavigatorQueryActiveViewTypeEventArgs.SelectedDays">
<summary>
<para>Gets the collection of dates selected in the DateNavigator bound to scheduler.
</para>
</summary>
<value>A <see cref="T:DevExpress.XtraScheduler.DayIntervalCollection"/> object.
</value>
</member>
<member name="T:DevExpress.XtraScheduler.DateNavigatorQueryActiveViewTypeHandler">
<summary>
<para>Represents a method that will handle the <see cref="E:DevExpress.XtraScheduler.SchedulerControl.DateNavigatorQueryActiveViewType"/> event.
</para>
</summary>
</member>
<member name="M:DevExpress.XtraScheduler.DateNavigatorQueryActiveViewTypeHandler.Invoke(System.Object,DevExpress.XtraScheduler.DateNavigatorQueryActiveViewTypeEventArgs)">
<summary>
<para>A method that will handle the <see cref="E:DevExpress.XtraScheduler.SchedulerControl.DateNavigatorQueryActiveViewType"/>, <see cref="E:DevExpress.Xpf.Scheduler.SchedulerControl.DateNavigatorQueryActiveViewType"/> and <see cref="E:DevExpress.Web.ASPxScheduler.ASPxScheduler.DateNavigatorQueryActiveViewType"/> events.
</para>
</summary>
<param name="sender">
The event source. This parameter identifies the <see cref="T:DevExpress.XtraScheduler.SchedulerControl"/>, <see cref="T:DevExpress.Xpf.Scheduler.SchedulerControl"/> or <see cref="T:DevExpress.Web.ASPxScheduler.ASPxScheduler"/> which raised the event.
</param>
<param name="e">
A <see cref="T:DevExpress.XtraScheduler.DateNavigatorQueryActiveViewTypeEventArgs"/> object which contains event data.
</param>
</member>
<member name="T:DevExpress.XtraScheduler.AppointmentMappingInfo">
<summary>
<para>Provides information on the mapping of the appointment's properties to the appropriate data fields.
</para>
</summary>
</member>
<member name="M:DevExpress.XtraScheduler.AppointmentMappingInfo.#ctor">
<summary>
<para>Initializes a new instance of the AppointmentMappingInfo class with the default settings.
</para>
</summary>
</member>
<member name="P:DevExpress.XtraScheduler.AppointmentMappingInfo.AllDay">
<summary>
<para>Gets or sets the data field which an appointment's <see cref="P:DevExpress.XtraScheduler.Appointment.AllDay"/> property is bound to.
</para>
</summary>
<value>A <see cref="T:System.String"/> value that specifies the name of the bound data field.
</value>
</member>
<member name="P:DevExpress.XtraScheduler.AppointmentMappingInfo.AppointmentId">
<summary>
<para>Gets or sets the data field which an appointment's <see cref="P:DevExpress.XtraScheduler.Appointment.Id"/> property is bound to.
</para>
</summary>
<value>A <see cref="T:System.String"/> value that specifies the name of the bound data field.
</value>
</member>
<member name="P:DevExpress.XtraScheduler.AppointmentMappingInfo.DataManager">
<summary>
<para>For internal use only.
</para>
</summary>
<value>A <b>DevExpress.XtraScheduler.Data.AppointmentDataManager</b> object.
</value>
</member>
<member name="P:DevExpress.XtraScheduler.AppointmentMappingInfo.Description">
<summary>
<para>Gets or sets the data field which an appointment's <see cref="P:DevExpress.XtraScheduler.Appointment.Description"/> property is bound to.
</para>
</summary>
<value>A <see cref="T:System.String"/> value that specifies the name of the bound data field.
</value>
</member>
<member name="P:DevExpress.XtraScheduler.AppointmentMappingInfo.End">
<summary>
<para>Gets or sets the data field which an appointment's <see cref="P:DevExpress.XtraScheduler.Appointment.End"/> property is bound to.
</para>
</summary>
<value>A <see cref="T:System.String"/> value that specifies the name of the bound data field.
</value>
</member>
<member name="M:DevExpress.XtraScheduler.AppointmentMappingInfo.GetRequiredMappingNames">
<summary>
<para>Gets an array containing the names of all the AppointmentMappingInfo object's properties that have to be bound to corresponding data fields.
</para>
</summary>
<returns>An array of strings that represent the names of the properties that have to be bound to data.
</returns>
</member>
<member name="P:DevExpress.XtraScheduler.AppointmentMappingInfo.Label">
<summary>
<para>Gets or sets the data field which an appointment's <see cref="P:DevExpress.XtraScheduler.Appointment.LabelId"/> property is bound to.
</para>
</summary>
<value>A <see cref="T:System.String"/> value that specifies the name of the bound data field.
</value>
</member>
<member name="P:DevExpress.XtraScheduler.AppointmentMappingInfo.Location">
<summary>
<para>Gets or sets the data field which an appointment's <see cref="P:DevExpress.XtraScheduler.Appointment.Location"/> property is bound to.
</para>
</summary>
<value>A <see cref="T:System.String"/> value that specifies the name of the bound data field.
</value>
</member>
<member name="P:DevExpress.XtraScheduler.AppointmentMappingInfo.PercentComplete">
<summary>
<para>Gets or sets the data field which an appointment's <see cref="P:DevExpress.XtraScheduler.Appointment.PercentComplete"/> property is bound to.
</para>
</summary>
<value>A <see cref="T:System.String"/> value that specifies the name of the bound data field.
</value>
</member>
<member name="P:DevExpress.XtraScheduler.AppointmentMappingInfo.RecurrenceInfo">
<summary>
<para>Gets or sets the data field which an appointment's <see cref="P:DevExpress.XtraScheduler.Appointment.RecurrenceInfo"/> property is bound to.
</para>
</summary>
<value>A <see cref="T:System.String"/> value that specifies the name of the bound data field.
</value>
</member>
<member name="P:DevExpress.XtraScheduler.AppointmentMappingInfo.ReminderInfo">
<summary>
<para>Gets or sets the data field which an appointment's <see cref="P:DevExpress.XtraScheduler.Appointment.Reminder"/> property is bound to.
</para>
</summary>
<value>A <see cref="T:System.String"/> value that specifies the name of the bound data field.
</value>
</member>
<member name="P:DevExpress.XtraScheduler.AppointmentMappingInfo.ResourceId">
<summary>
<para>Gets or sets the data field which an appointment's <see cref="P:DevExpress.XtraScheduler.Appointment.ResourceId"/> property is bound to.
</para>
</summary>
<value>A <see cref="T:System.String"/> value that specifies the name of the bound data field.
</value>
</member>
<member name="P:DevExpress.XtraScheduler.AppointmentMappingInfo.Start">
<summary>
<para>Gets or sets the data field which an appointment's <see cref="P:DevExpress.XtraScheduler.Appointment.Start"/> property is bound to.
</para>
</summary>
<value>A <see cref="T:System.String"/> value that specifies the name of the bound data field.
</value>
</member>
<member name="P:DevExpress.XtraScheduler.AppointmentMappingInfo.Status">
<summary>
<para>Gets or sets the data field which an appointment's <see cref="P:DevExpress.XtraScheduler.Appointment.StatusId"/> property is bound to.
</para>
</summary>
<value>A <see cref="T:System.String"/> value that specifies the name of the bound data field.
</value>
</member>
<member name="P:DevExpress.XtraScheduler.AppointmentMappingInfo.Subject">
<summary>
<para>Gets or sets the data field which an appointment's <see cref="P:DevExpress.XtraScheduler.Appointment.Subject"/> property is bound to.
</para>
</summary>
<value>A <see cref="T:System.String"/> value that specifies the name of the bound data field.
</value>
</member>
<member name="P:DevExpress.XtraScheduler.AppointmentMappingInfo.Type">
<summary>
<para>Gets or sets the data field which an appointment's <see cref="P:DevExpress.XtraScheduler.Appointment.Type"/> property is bound to.
</para>
</summary>
<value>A <see cref="T:System.String"/> value that specifies the name of the bound data field.
</value>
</member>
<member name="T:DevExpress.XtraScheduler.ToolTipVisibility">
<summary>
<para>Lists the visibility mode of the scheduler's tooltips.
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.ToolTipVisibility.Always">
<summary>
<para>Tooltips are always shown after a mouse pointer hovers over the object for some time.
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.ToolTipVisibility.Never">
<summary>
<para>Tooltips are never shown.
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.ToolTipVisibility.Standard">
<summary>
<para>Tooltips are shown only when the text is partially or completely hidden and the mouse pointer has hovered over the object for a short while.
</para>
</summary>
</member>
<member name="T:DevExpress.XtraScheduler.UsedAppointmentType">
<summary>
<para>Lists values which specify restrictions for end-users on which appointments can be used in particular events.
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.UsedAppointmentType.All">
<summary>
<para>The action can be applied to all the appointments.
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.UsedAppointmentType.Custom">
<summary>
<para>The action is applied according to the custom method specified by the corresponding <b>AllowAppointment~</b> event of the <b>SchedulerControl</b>.
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.UsedAppointmentType.None">
<summary>
<para>The action can't be applied to any appointments.
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.UsedAppointmentType.NonRecurring">
<summary>
<para>The action can be applied to non-recurring appointments only.
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.UsedAppointmentType.Recurring">
<summary>
<para>The action can be applied to recurring appointments only.
</para>
</summary>
</member>
<member name="T:DevExpress.XtraScheduler.WeekDays">
<summary>
<para>Lists days and groups of days for recurrence patterns.
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.WeekDays.EveryDay">
<summary>
<para>Specifies every day of the week.
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.WeekDays.Friday">
<summary>
<para>Specifies <b>Friday</b>.
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.WeekDays.Monday">
<summary>
<para>Specifies <b>Monday</b>.
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.WeekDays.Saturday">
<summary>
<para>Specifies <b>Saturday</b>.
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.WeekDays.Sunday">
<summary>
<para>Specifies <b>Sunday</b>.
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.WeekDays.Thursday">
<summary>
<para>Specifies <b>Thursday</b>.
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.WeekDays.Tuesday">
<summary>
<para>Specifies <b>Tuesday</b>.
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.WeekDays.Wednesday">
<summary>
<para>Specifies <b>Wednesday</b>.
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.WeekDays.WeekendDays">
<summary>
<para>Specifies <b>Saturday</b> and <b>Sunday</b>.
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.WeekDays.WorkDays">
<summary>
<para>Specifies work days (<b>Monday</b>, <b>Tuesday</b>, <b>Wednesday</b>, <b>Thursday</b> and <b>Friday</b>).
</para>
</summary>
</member>
<member name="T:DevExpress.XtraScheduler.TimeInterval">
<summary>
<para>Represents a time interval object.
</para>
</summary>
</member>
<member name="M:DevExpress.XtraScheduler.TimeInterval.#ctor(System.DateTime,System.DateTime)">
<summary>
<para>Initializes a new instance of the <see cref="T:DevExpress.XtraScheduler.TimeInterval"/> class with the specified start date and end date.
</para>
</summary>
<param name="start">
A <see cref="T:System.DateTime"/> value that specifies the start date of the interval. This value is assigned to the <see cref="P:DevExpress.XtraScheduler.TimeInterval.Start"/> property.
</param>
<param name="end">
A <see cref="T:System.DateTime"/> value that specifies the end date of the interval. This value is assigned to the <see cref="P:DevExpress.XtraScheduler.TimeInterval.End"/> property.
</param>
</member>
<member name="M:DevExpress.XtraScheduler.TimeInterval.#ctor(System.DateTime,System.TimeSpan)">
<summary>
<para>Initializes a new instance of the <see cref="T:DevExpress.XtraScheduler.TimeInterval"/> class with the specified start date and duration.
</para>
</summary>
<param name="start">
A <see cref="T:System.DateTime"/> value that specifies the start date of the interval. This value is assigned to the <see cref="P:DevExpress.XtraScheduler.TimeInterval.Start"/> property.
</param>
<param name="duration">
A <see cref="T:System.TimeSpan"/> value that specifies the duration of the interval. This value is assigned to the <see cref="P:DevExpress.XtraScheduler.TimeInterval.Duration"/> property.
</param>
</member>
<member name="M:DevExpress.XtraScheduler.TimeInterval.#ctor">
<summary>
<para>Initializes a new instance of the <see cref="T:DevExpress.XtraScheduler.TimeInterval"/> class with default settings.
</para>
</summary>
</member>
<member name="P:DevExpress.XtraScheduler.TimeInterval.AllDay">
<summary>
<para>Gets or sets a value indicating if the time interval is <b>All-Day</b>.
</para>
</summary>
<value><b>true</b> if this is an all-day time interval; otherwise, <b>false</b>.
</value>
</member>
<member name="M:DevExpress.XtraScheduler.TimeInterval.Clone">
<summary>
<para>Creates a copy of the current TimeInterval object.
</para>
</summary>
<returns>A TimeInterval object which is a copy of the current object.
</returns>
</member>
<member name="M:DevExpress.XtraScheduler.TimeInterval.Contains(System.DateTime)">
<summary>
<para>Determines whether the time interval contains the specified date.
</para>
</summary>
<param name="date">
A <see cref="T:System.DateTime"/> object to locate in the time interval.
</param>
<returns><b>true</b> if the time interval contains the specified date; otherwise, <b>false</b>.
</returns>
</member>
<member name="M:DevExpress.XtraScheduler.TimeInterval.Contains(DevExpress.XtraScheduler.TimeInterval)">
<summary>
<para>Determines whether the current time interval contains the specified time interval.
</para>
</summary>
<param name="interval">
A <see cref="T:DevExpress.XtraScheduler.TimeInterval"/> object to locate in the current time interval.
</param>
<returns><b>true</b> if the current time interval contains the specified time interval; otherwise, <b>false</b>.
</returns>
</member>
<member name="P:DevExpress.XtraScheduler.TimeInterval.Day">
<summary>
<para>Gets the time interval of a day.
</para>
</summary>
<value>A <see cref="T:DevExpress.XtraScheduler.TimeInterval"/> value representing the day interval.
</value>
</member>
<member name="P:DevExpress.XtraScheduler.TimeInterval.Duration">
<summary>
<para>Gets or sets the duration of the time interval.
</para>
</summary>
<value>A <see cref="T:System.TimeSpan"/> value representing the duration of the time interval.
</value>
</member>
<member name="P:DevExpress.XtraScheduler.TimeInterval.Empty">
<summary>
<para>Returns an empty time interval.
</para>
</summary>
<value>A <see cref="T:DevExpress.XtraScheduler.TimeInterval"/> value representing an empty time interval.
</value>
</member>
<member name="P:DevExpress.XtraScheduler.TimeInterval.End">
<summary>
<para>Gets or sets the end date and time of the time interval.
</para>
</summary>
<value>A <see cref="T:System.DateTime"/> value representing the end of the time interval.
</value>
</member>
<member name="M:DevExpress.XtraScheduler.TimeInterval.Equals(System.Object)">
<summary>
<para>Determines whether the specified object is equal to the current TimeInterval instance.
</para>
</summary>
<param name="obj">
The object to compare with the current object.
</param>
<returns><b>true</b> if the specified object is equal to the current TimeInterval instance; otherwise <b>false</b>.
</returns>
</member>
<member name="M:DevExpress.XtraScheduler.TimeInterval.GetHashCode">
<summary>
<para>Gets the hash code (a number) that corresponds to the value of the current TimeInterval object.
</para>
</summary>
<returns>An integer value representing the hash code for the current object.
</returns>
</member>
<member name="M:DevExpress.XtraScheduler.TimeInterval.Intersect(DevExpress.XtraScheduler.TimeInterval,DevExpress.XtraScheduler.TimeInterval)">
<summary>
<para>Returns a time interval which is the intersection of the two specified time intervals.
</para>
</summary>
<param name="interval1">
A <see cref="T:DevExpress.XtraScheduler.TimeInterval"/> object which represents the first time interval.
</param>
<param name="interval2">
A <see cref="T:DevExpress.XtraScheduler.TimeInterval"/> object which represents the second time interval.
</param>
<returns>A <see cref="T:DevExpress.XtraScheduler.TimeInterval"/> object representing the intersection of the two time intervals. If the two specified time intervals don't intersect, the <see cref="P:DevExpress.XtraScheduler.TimeInterval.Empty"/> value will be returned.
</returns>
</member>
<member name="M:DevExpress.XtraScheduler.TimeInterval.Intersect(DevExpress.XtraScheduler.TimeInterval)">
<summary>
<para>Returns a time interval which is the intersection of the current time interval with the specified time interval.
</para>
</summary>
<param name="interval">
A <see cref="T:DevExpress.XtraScheduler.TimeInterval"/> object which specifies the time interval to be intersected.
</param>
<returns>A <see cref="T:DevExpress.XtraScheduler.TimeInterval"/> object representing the intersection of the two time intervals. If the two time intervals don't intersect, the <see cref="P:DevExpress.XtraScheduler.TimeInterval.Empty"/> value will be returned.
</returns>
</member>
<member name="M:DevExpress.XtraScheduler.TimeInterval.IntersectsWith(DevExpress.XtraScheduler.TimeInterval)">
<summary>
<para>Checks if the current time interval intersects with the specified time interval.
</para>
</summary>
<param name="interval">
A <see cref="T:DevExpress.XtraScheduler.TimeInterval"/> object which represents the time interval to be checked.
</param>
<returns><b>true</b> if the two time intervals intersect; otherwise, <b>false</b>.
</returns>
</member>
<member name="M:DevExpress.XtraScheduler.TimeInterval.IntersectsWithExcludingBounds(DevExpress.XtraScheduler.TimeInterval)">
<summary>
<para>Checks if the current time interval intersects with the specified time interval. The boundaries of the time intervals are excluded from the check.
</para>
</summary>
<param name="interval">
A <see cref="T:DevExpress.XtraScheduler.TimeInterval"/> object which represents the time interval to be checked.
</param>
<returns><b>true</b> if the two time intervals intersect; otherwise, <b>false</b>.
</returns>
</member>
<member name="P:DevExpress.XtraScheduler.TimeInterval.LongerThanADay">
<summary>
<para>Gets a value that indicates whether the time interval's duration is equal to or greater than one day.
</para>
</summary>
<value><b>true</b> if the time interval lasts one day or more; otherwise, <b>false</b>.
</value>
</member>
<member name="P:DevExpress.XtraScheduler.TimeInterval.SameDay">
<summary>
<para>Gets a value that indicates whether the time interval's start and end times are on the same day.
</para>
</summary>
<value><b>true</b>, if the time interval takes place within a day; <b>false</b>, if the time interval's start and end times are on different days.
</value>
</member>
<member name="P:DevExpress.XtraScheduler.TimeInterval.Start">
<summary>
<para>Gets or sets the start date and time of the time interval.
</para>
</summary>
<value>A <see cref="T:System.DateTime"/> value representing the start of the time interval.
</value>
</member>
<member name="M:DevExpress.XtraScheduler.TimeInterval.Subtract(DevExpress.XtraScheduler.TimeInterval)">
<summary>
<para>Returns a time interval which is the subtraction of the specified time interval from the current time interval.
</para>
</summary>
<param name="interval">
A <see cref="T:DevExpress.XtraScheduler.TimeInterval"/> object which represents the time interval to subtract.
</param>
<returns>A <see cref="T:DevExpress.XtraScheduler.TimeIntervalCollection"/> object representing the result of subtraction.
</returns>
</member>
<member name="M:DevExpress.XtraScheduler.TimeInterval.ToString">
<summary>
<para>Returns the textual representation of the time interval.
</para>
</summary>
<returns>A <see cref="T:System.String"/> value which is the textual representation of the time interval.
</returns>
</member>
<member name="M:DevExpress.XtraScheduler.TimeInterval.ToString(System.IFormatProvider)">
<summary>
<para>Provides a string representation of the time interval, culture specific.
</para>
</summary>
<param name="provider">
An object, implementing the <see cref="T:System.IFormatProvider"/> interface, which specifies the datetime formatting template.
</param>
<returns>A string, representing the TimeInterval object.
</returns>
</member>
<member name="M:DevExpress.XtraScheduler.TimeInterval.Union(DevExpress.XtraScheduler.TimeInterval,DevExpress.XtraScheduler.TimeInterval)">
<summary>
<para>Returns a time interval which is composed of the two specified time intervals.
</para>
</summary>
<param name="interval1">
A <see cref="T:DevExpress.XtraScheduler.TimeInterval"/> object which represents the first time interval to be united.
</param>
<param name="interval2">
A <see cref="T:DevExpress.XtraScheduler.TimeInterval"/> object which represents the second time interval to be united.
</param>
<returns>A <see cref="T:DevExpress.XtraScheduler.TimeInterval"/> object representing the union of the two time intervals.
</returns>
</member>
<member name="T:DevExpress.XtraScheduler.RecurrenceInfo">
<summary>
<para>Contains a recurring appointment's reocurrence information.
</para>
</summary>
</member>
<member name="M:DevExpress.XtraScheduler.RecurrenceInfo.#ctor(System.DateTime,System.TimeSpan)">
<summary>
<para>Initializes a new instance of the RecurrenceInfo class with the specified start date and duration.
</para>
</summary>
<param name="start">
A <see cref="T:System.DateTime"/> value that specifies the start date of the recurrence. This value is assigned to the <see cref="P:DevExpress.XtraScheduler.RecurrenceInfo.Start"/> property.
</param>
<param name="duration">
A <see cref="T:System.TimeSpan"/> value that specifies the duration of the recurrence. This value is assigned to the <see cref="P:DevExpress.XtraScheduler.RecurrenceInfo.Duration"/> property.
</param>
</member>
<member name="M:DevExpress.XtraScheduler.RecurrenceInfo.#ctor(System.DateTime,System.DateTime)">
<summary>
<para>Initializes a new instance of the RecurrenceInfo class with the specified start date and end date.
</para>
</summary>
<param name="start">
A <see cref="T:System.DateTime"/> value that specifies the start date of the recurrence. This value is assigned to the <see cref="P:DevExpress.XtraScheduler.RecurrenceInfo.Start"/> property.
</param>
<param name="end">
A <see cref="T:System.DateTime"/> value that specifies the end date of the recurrence. This value is assigned to the <see cref="P:DevExpress.XtraScheduler.RecurrenceInfo.End"/> property.
</param>
</member>
<member name="M:DevExpress.XtraScheduler.RecurrenceInfo.#ctor(System.DateTime,System.Int32)">
<summary>
<para>Initializes a new instance of the RecurrenceInfo class with the specified start date and count value.
</para>
</summary>
<param name="start">
A <see cref="T:System.DateTime"/> value that specifies the start date of the recurrence. This value is assigned to the <see cref="P:DevExpress.XtraScheduler.RecurrenceInfo.Start"/> property.
</param>
<param name="occurrenceCount">
An integer value that specifies the count value of the recurrence. This value is assigned to the <see cref="P:DevExpress.XtraScheduler.RecurrenceInfo.OccurrenceCount"/> property.
</param>
</member>
<member name="M:DevExpress.XtraScheduler.RecurrenceInfo.#ctor">
<summary>
<para>Initializes a new instance of the RecurrenceInfo class with default settings.
</para>
</summary>
</member>
<member name="M:DevExpress.XtraScheduler.RecurrenceInfo.#ctor(System.DateTime)">
<summary>
<para>Initializes a new instance of the RecurrenceInfo class with the specified start date.
</para>
</summary>
<param name="start">
A <see cref="T:System.DateTime"/> value that specifies the start date of the recurrence. This value is assigned to the <see cref="P:DevExpress.XtraScheduler.RecurrenceInfo.Start"/> property.
</param>
</member>
<member name="P:DevExpress.XtraScheduler.RecurrenceInfo.AllDay">
<summary>
<para>Gets or sets a value indicating if the time interval which represents the current recurrence range is <b>All-Day</b>.
</para>
</summary>
<value><b>true</b> if the recurrence's time interval is <b>All-Day</b>; otherwise, <b>false</b>.
</value>
</member>
<member name="M:DevExpress.XtraScheduler.RecurrenceInfo.BeginUpdate">
<summary>
<para>Locks the RecurrenceInfo object by disallowing visual updates until the <b>EndUpdate</b> or <b>CancelUpdate</b> method is called.
</para>
</summary>
</member>
<member name="M:DevExpress.XtraScheduler.RecurrenceInfo.CancelUpdate">
<summary>
<para>Unlocks the RecurrenceInfo object after it has been locked by the <b>BeginUpdate</b> method, without causing an immediate visual update.
</para>
</summary>
</member>
<member name="P:DevExpress.XtraScheduler.RecurrenceInfo.DayNumber">
<summary>
<para>Gets or sets the ordinal number of a day within a defined month.
</para>
</summary>
<value>A positive integer value that specifies the day number within a month.
</value>
</member>
<member name="P:DevExpress.XtraScheduler.RecurrenceInfo.Duration">
<summary>
<para>Gets or sets the recurrence's duration.
</para>
</summary>
<value>A <see cref="T:System.TimeSpan"/> value that specifies the duration of the recurrence.
</value>
</member>
<member name="P:DevExpress.XtraScheduler.RecurrenceInfo.End">
<summary>
<para>Gets or sets the recurrence's end date.
</para>
</summary>
<value>A <see cref="T:System.DateTime"/> value that specifies the end date for the recurrence.
</value>
</member>
<member name="M:DevExpress.XtraScheduler.RecurrenceInfo.EndUpdate">
<summary>
<para>Unlocks the RecurrenceInfo object after a call to the <b>BeginUpdate</b> method and causes an immediate visual update.
</para>
</summary>
</member>
<member name="M:DevExpress.XtraScheduler.RecurrenceInfo.Equals(System.Object)">
<summary>
<para>Determines whether the specified object is equal to the current RecurrenceInfo instance.
</para>
</summary>
<param name="obj">
The object to compare with the current object.
</param>
<returns><b>true</b> if the specified object is equal to the current RecurrenceInfo instance; otherwise <b>false</b>.
</returns>
</member>
<member name="M:DevExpress.XtraScheduler.RecurrenceInfo.Equals(DevExpress.XtraScheduler.RecurrenceInfo)">
<summary>
<para>Determines whether the specified RecurrenceInfo object is equal to the current RecurrenceInfo instance.
</para>
</summary>
<param name="recurrenceInfo">
The object to compare with the current object.
</param>
<returns><b>true</b> if the specified object is equal to the current RecurrenceInfo instance; otherwise <b>false</b>.
</returns>
</member>
<member name="M:DevExpress.XtraScheduler.RecurrenceInfo.FromXml(System.String)">
<summary>
<para>Reconstructs the recurrence information from an XML encoding.
</para>
</summary>
<param name="val">
A <see cref="T:System.String"/> value that specifies the XML encoding to use to reconstruct the recurrence information.
</param>
</member>
<member name="M:DevExpress.XtraScheduler.RecurrenceInfo.FromXml(System.String,DevExpress.XtraScheduler.DateSavingType)">
<summary>
<para>Loads recurrence information from an xml source.
</para>
</summary>
<param name="val">
A string containing recurrence information in xml format.
</param>
<param name="dateSaving">
Specifies the <see cref="T:DevExpress.XtraScheduler.DateSavingType"/> of the datetime values to interpret them correctly.
</param>
</member>
<member name="M:DevExpress.XtraScheduler.RecurrenceInfo.GetDescription(DevExpress.XtraScheduler.Appointment,System.DayOfWeek)">
<summary>
<para>Returns a human readable description of the recurrence pattern for the specified appointment.
</para>
</summary>
<param name="apt">
An <see cref="T:DevExpress.XtraScheduler.Appointment"/> object that specifies the appointment whose recurrence pattern is to be converted into a human readable description.
</param>
<param name="firstDayOfWeek">
A <see cref="T:System.DayOfWeek"/> enumeration value which specifies the day of the week that is considered to be the first when calculating the recurrence pattern for the appointment. The current setting for the first day of the week can be obtained via the <see cref="P:DevExpress.XtraScheduler.SchedulerControl.FirstDayOfWeek"/> property.
</param>
<returns>A <see cref="T:System.String"/>, which is a human readable description of the appointment's recurrence pattern. Localizable.
</returns>
</member>
<member name="M:DevExpress.XtraScheduler.RecurrenceInfo.GetHashCode">
<summary>
<para>Serves as a hash function for a RecurrenceInfo class.
</para>
</summary>
<returns>A hash code for the current RecurrenceInfo object.
</returns>
</member>
<member name="P:DevExpress.XtraScheduler.RecurrenceInfo.Id">
<summary>
<para>Gets the current object's unique identifier.
</para>
</summary>
<value>A <see cref="T:System.Guid"/> value that represents the object's unique identifier.
</value>
</member>
<member name="P:DevExpress.XtraScheduler.RecurrenceInfo.IsUpdateLocked">
<summary>
<para>Gets whether the recurrence information has been locked for updating.
</para>
</summary>
<value><b>true</b> if the recurrence information is locked; otherwise, <b>false</b>.
</value>
</member>
<member name="P:DevExpress.XtraScheduler.RecurrenceInfo.Month">
<summary>
<para>Gets or sets the month (as a number) on which the corresponding appointment reoccurs.
</para>
</summary>
<value>A positive integer value that specifies the month's sequence number.
</value>
</member>
<member name="P:DevExpress.XtraScheduler.RecurrenceInfo.OccurrenceCount">
<summary>
<para>Gets or sets how many times the appointment occurs.
</para>
</summary>
<value>An integer value that specifies how many times the appointment occurs.
</value>
</member>
<member name="P:DevExpress.XtraScheduler.RecurrenceInfo.Periodicity">
<summary>
<para>Gets or sets the frequency with which the corresponding appointment reoccurs, with respect to the <see cref="P:DevExpress.XtraScheduler.RecurrenceInfo.Type"/> property.
</para>
</summary>
<value>An integer value that specifies the frequency with which the corresponding appointment reoccurs.
</value>
</member>
<member name="E:DevExpress.XtraScheduler.RecurrenceInfo.PropertyChanged">
<summary>
<para>Occurs when a property value changes.
</para>
</summary>
</member>
<member name="P:DevExpress.XtraScheduler.RecurrenceInfo.Range">
<summary>
<para>Gets or sets the type of the recurrence range.
</para>
</summary>
<value>A <see cref="T:DevExpress.XtraScheduler.RecurrenceRange"/> enumeration value that specifies the recurrence's range type.
</value>
</member>
<member name="M:DevExpress.XtraScheduler.RecurrenceInfo.Reset(DevExpress.XtraScheduler.RecurrenceType)">
<summary>
<para>Resets all recurrence information fields to their default values according to the specified recurrence type.
</para>
</summary>
<param name="type">
A <see cref="T:DevExpress.XtraScheduler.RecurrenceType"/> enumeration value which specifies the recurrence type.
</param>
</member>
<member name="P:DevExpress.XtraScheduler.RecurrenceInfo.Start">
<summary>
<para>Gets or sets the recurrence's start date.
</para>
</summary>
<value>A <see cref="T:System.DateTime"/> value that specifies the start date for the recurrence.
</value>
</member>
<member name="M:DevExpress.XtraScheduler.RecurrenceInfo.ToXml">
<summary>
<para>Creates an XML encoding of the recurrence information.
</para>
</summary>
<returns>A <see cref="T:System.String"/> value that represents an XML encoding of the recurrence information object.
</returns>
</member>
<member name="M:DevExpress.XtraScheduler.RecurrenceInfo.ToXml(DevExpress.XtraScheduler.DateSavingType)">
<summary>
<para>Creates an XML encoding of the recurrence information.
</para>
</summary>
<param name="dateSaving">
Specifies the <see cref="T:DevExpress.XtraScheduler.DateSavingType"/> of the datetime values, to interpret them correctly.
</param>
<returns>A <see cref="T:System.String"/> value that represents an XML encoding of the recurrence information object.
</returns>
</member>
<member name="P:DevExpress.XtraScheduler.RecurrenceInfo.Type">
<summary>
<para>Gets or sets the time base for the frequency of the corresponding appointment's reoccurrences.
</para>
</summary>
<value>A <see cref="T:DevExpress.XtraScheduler.RecurrenceType"/> enumeration value that specifies the recurrence's frequency type.
</value>
</member>
<member name="P:DevExpress.XtraScheduler.RecurrenceInfo.WeekDays">
<summary>
<para>Gets or sets the day/days in a week that the corresponding appointment reoccurs on.
</para>
</summary>
<value>The <see cref="T:DevExpress.XtraScheduler.WeekDays"/> enumeration's value specifying the day/days in a week.
</value>
</member>
<member name="P:DevExpress.XtraScheduler.RecurrenceInfo.WeekOfMonth">
<summary>
<para>Gets or sets the occurrence number of the week in a month for the recurrence pattern.
</para>
</summary>
<value>A <see cref="T:DevExpress.XtraScheduler.WeekOfMonth"/> enumeration value that specifies a particular week in every month.
</value>
</member>
<member name="T:DevExpress.XtraScheduler.AppointmentCollection">
<summary>
<para>Represents an appointment collection.
</para>
</summary>
</member>
<member name="M:DevExpress.XtraScheduler.AppointmentCollection.#ctor(DevExpress.XtraScheduler.SchedulerStorageBase)">
<summary>
<para>Initializes a new instance of the <see cref="T:DevExpress.XtraScheduler.AppointmentCollection"/> class with the specified scheduler storage.
</para>
</summary>
<param name="storage">
A <see cref="T:DevExpress.XtraScheduler.SchedulerStorageBase"/> value which represents the scheduler storage of the appointments collection. This value is assigned to the <see cref="P:DevExpress.XtraScheduler.AppointmentCollection.Storage"/> property.
</param>
</member>
<member name="M:DevExpress.XtraScheduler.AppointmentCollection.#ctor">
<summary>
<para>Initializes a new instance of the AppointmentCollection class with default settings.
</para>
</summary>
</member>
<member name="M:DevExpress.XtraScheduler.AppointmentCollection.Add(DevExpress.XtraScheduler.Appointment)">
<summary>
<para>Appends the specified <see cref="T:DevExpress.XtraScheduler.Appointment"/> object to the current collection.
</para>
</summary>
<param name="apt">
An <see cref="T:DevExpress.XtraScheduler.Appointment"/> object to append to the collection.
</param>
<returns>An integer value indicating the position into which the new element was inserted.
</returns>
</member>
<member name="M:DevExpress.XtraScheduler.AppointmentCollection.AddRange(System.Collections.ICollection)">
<summary>
<para>Adds a collection of appointments to the end of the collection.
</para>
</summary>
<param name="collection">
A <see cref="T:System.Collections.ICollection"/> object which represents the collection of appointments to append to the collection.
</param>
</member>
<member name="M:DevExpress.XtraScheduler.AppointmentCollection.AreIntersecting(DevExpress.XtraScheduler.Appointment,DevExpress.XtraScheduler.Appointment)">
<summary>
<para>Checks if the two specified appointments intersect.
</para>
</summary>
<param name="apt1">
An <see cref="T:DevExpress.XtraScheduler.Appointment"/> object which represents the first appointment whose time interval is to be checked.
</param>
<param name="apt2">
An <see cref="T:DevExpress.XtraScheduler.Appointment"/> object which represents the second appointment whose time interval is to be checked.
</param>
<returns><b>true</b> if the two appointments intersect; otherwise, <b>false</b>.
</returns>
</member>
<member name="M:DevExpress.XtraScheduler.AppointmentCollection.CalcPatternInterval(DevExpress.XtraScheduler.Appointment)">
<summary>
<para>Returns the time interval in which the occurrences of the specified pattern appointment take place.
</para>
</summary>
<param name="pattern">
An <see cref="T:DevExpress.XtraScheduler.Appointment"/> object that specifies the pattern appointment whose recurrence range is to be returned.
</param>
<returns>A <see cref="T:DevExpress.XtraScheduler.TimeInterval"/> object that represents the time interval for the appointment's reoccurrences.
</returns>
</member>
<member name="M:DevExpress.XtraScheduler.AppointmentCollection.GetAppointmentById(System.Object)">
<summary>
<para>Gets the appointment by its identifier.
</para>
</summary>
<param name="id">
An object that is the unique identifier of an appointment.
</param>
<returns>An <see cref="T:DevExpress.XtraScheduler.Appointment"/> object.
</returns>
</member>
<member name="M:DevExpress.XtraScheduler.AppointmentCollection.GetConflicts(DevExpress.XtraScheduler.Appointment,DevExpress.XtraScheduler.TimeInterval)">
<summary>
<para>Returns a collection of appointments which overlap the specified appointment within the specified time interval and use the same resource.
</para>
</summary>
<param name="appointment">
An <see cref="T:DevExpress.XtraScheduler.Appointment"/> object for which any conflicts should be returned.
</param>
<param name="interval">
A <see cref="T:DevExpress.XtraScheduler.TimeInterval"/> object which specifies the observed time interval.
</param>
<returns>An <see cref="T:DevExpress.XtraScheduler.AppointmentBaseCollection"/> collection which contains appointments which conflict with the specified appointment.
</returns>
</member>
<member name="M:DevExpress.XtraScheduler.AppointmentCollection.IsIntersecting(DevExpress.XtraScheduler.TimeInterval,DevExpress.XtraScheduler.Resource)">
<summary>
<para>Checks if the appointment to be created for the specified time interval and resource will be intersecting with any of the appointments within the collection for the same <b>resource</b>.
</para>
</summary>
<param name="interval">
A <see cref="T:DevExpress.XtraScheduler.TimeInterval"/> object representing the time interval of the appointment to check.
</param>
<param name="resource">
A <see cref="T:DevExpress.XtraScheduler.Resource"/> object representing the resource of the appointment to be checked.
</param>
<returns><b>true</b> if the appointment with the specified time interval and resource will be intersecting with at least one appointment within the collection; otherwise, <b>false</b>.
</returns>
</member>
<member name="M:DevExpress.XtraScheduler.AppointmentCollection.IsNewAppointment(DevExpress.XtraScheduler.Appointment)">
<summary>
<para>Determines whether the appointment is already contained either in this AppointmentCollection, or in one of the series of its recurring appointments.
</para>
</summary>
<param name="apt">
An <see cref="T:DevExpress.XtraScheduler.Appointment"/> object which represents the appointment to search.
</param>
<returns><b>true</b> if the appointment isn't contained in this collection and in its recurrent series; otherwise, <b>false</b>.
</returns>
</member>
<member name="M:DevExpress.XtraScheduler.AppointmentCollection.ReadXml(System.String)">
<summary>
<para>Reads the settings of the appointments from the specified XML file.
</para>
</summary>
<param name="fileName">
A <see cref="T:System.String"/> value specifying the path to the file from which appointments should be read. If an empty string is specified, an exception is raised.
</param>
</member>
<member name="M:DevExpress.XtraScheduler.AppointmentCollection.ReadXml(System.IO.Stream)">
<summary>
<para>Reads the settings of the appointments from the specified stream.
</para>
</summary>
<param name="stream">
A <see cref="T:System.IO.Stream"/> descendant from which appointments are read. If <b>null</b> (<b>Nothing</b> in Visual Basic), an exception is raised.
</param>
</member>
<member name="P:DevExpress.XtraScheduler.AppointmentCollection.Storage">
<summary>
<para>Provides access to the storage object for an appointment collection.
</para>
</summary>
<value>A <see cref="T:DevExpress.XtraScheduler.SchedulerStorageBase"/> type class instance.
</value>
</member>
<member name="M:DevExpress.XtraScheduler.AppointmentCollection.WriteXml(System.IO.Stream)">
<summary>
<para>Saves all the appointments within the collection to the specified stream.
</para>
</summary>
<param name="stream">
A <see cref="T:System.IO.Stream"/> descendant to which the appointments should be written. If <b>null</b> (<b>Nothing</b> in Visual Basic), an exception is raised.
</param>
</member>
<member name="M:DevExpress.XtraScheduler.AppointmentCollection.WriteXml(System.String)">
<summary>
<para>Saves all the appointments within the collection to an XML file.
</para>
</summary>
<param name="fileName">
A <see cref="T:System.String"/> value specifying the path to the file where the appointments should be written. If an empty string is specified, an exception is raised.
</param>
</member>
<member name="T:DevExpress.XtraScheduler.Appointment">
<summary>
<para>An appointment in the scheduler control.
</para>
</summary>
</member>
<member name="M:DevExpress.XtraScheduler.Appointment.#ctor(System.DateTime,System.TimeSpan,System.String)">
<summary>
<para>Initializes a new instance of the Appointment class with the specified start date, duration and subject.
</para>
</summary>
<param name="start">
A <see cref="T:System.DateTime"/> value that specifies the start date of the appointment. This value is assigned to the <see cref="P:DevExpress.XtraScheduler.Appointment.Start"/> property.
</param>
<param name="duration">
A <see cref="T:System.TimeSpan"/> value that specifies the duration of the appointment. This value is assigned to the <see cref="P:DevExpress.XtraScheduler.Appointment.Duration"/> property.
</param>
<param name="subject">
A <see cref="T:System.String"/> value that specifies the subject of the appointment. This value is assigned to the <see cref="P:DevExpress.XtraScheduler.Appointment.Subject"/> property.
</param>
</member>
<member name="M:DevExpress.XtraScheduler.Appointment.#ctor(System.DateTime,System.DateTime,System.String)">
<summary>
<para>Initializes a new instance of the <see cref="T:DevExpress.XtraScheduler.Appointment"/> class with the specified start date, end date and subject.
</para>
</summary>
<param name="start">
A <see cref="T:System.DateTime"/> value that specifies the start date of the appointment. This value is assigned to the <see cref="P:DevExpress.XtraScheduler.Appointment.Start"/> property.
</param>
<param name="end">
A <see cref="T:System.DateTime"/> value that specifies the end date of the appointment. This value is assigned to the <see cref="P:DevExpress.XtraScheduler.Appointment.End"/> property.
</param>
<param name="subject">
A <see cref="T:System.String"/> value that specifies the subject of the appointment. This value is assigned to the <see cref="P:DevExpress.XtraScheduler.Appointment.Subject"/> property.
</param>
</member>
<member name="M:DevExpress.XtraScheduler.Appointment.#ctor(System.DateTime,System.DateTime)">
<summary>
<para>Initializes a new instance of the <see cref="T:DevExpress.XtraScheduler.Appointment"/> class with the specified start date and end date.
</para>
</summary>
<param name="start">
A <see cref="T:System.DateTime"/> value that specifies the start date of the appointment. This value is assigned to the <see cref="P:DevExpress.XtraScheduler.Appointment.Start"/> property.
</param>
<param name="end">
A <see cref="T:System.DateTime"/> value that specifies the end date of the appointment. This value is assigned to the <see cref="P:DevExpress.XtraScheduler.Appointment.End"/> property.
</param>
</member>
<member name="M:DevExpress.XtraScheduler.Appointment.#ctor(System.DateTime,System.TimeSpan)">
<summary>
<para>Initializes a new instance of the <see cref="T:DevExpress.XtraScheduler.Appointment"/> class with the specified start date and duration.
</para>
</summary>
<param name="start">
A <see cref="T:System.DateTime"/> value that specifies the start date of the appointment. This value is assigned to the <see cref="P:DevExpress.XtraScheduler.Appointment.Start"/> property.
</param>
<param name="duration">
A <see cref="T:System.TimeSpan"/> value that specifies the duration of the appointment. This value is assigned to the <see cref="P:DevExpress.XtraScheduler.Appointment.Duration"/> property.
</param>
</member>
<member name="M:DevExpress.XtraScheduler.Appointment.#ctor(DevExpress.XtraScheduler.AppointmentType,System.DateTime,System.DateTime)">
<summary>
<para>Initializes a new instance of the Appointment class with the specified type, start date and end date.
</para>
</summary>
<param name="type">
An <see cref="T:DevExpress.XtraScheduler.AppointmentType"/> enumeration value that specifies the type of the appointment. This value is assigned to the <see cref="P:DevExpress.XtraScheduler.Appointment.Type"/> property.
</param>
<param name="start">
A <see cref="T:System.DateTime"/> value that specifies the start date of the appointment. This value is assigned to the <see cref="P:DevExpress.XtraScheduler.Appointment.Start"/> property.
</param>
<param name="end">
A <see cref="T:System.DateTime"/> value that specifies the end date of the appointment. This value is assigned to the <see cref="P:DevExpress.XtraScheduler.Appointment.End"/> property.
</param>
</member>
<member name="M:DevExpress.XtraScheduler.Appointment.#ctor">
<summary>
<para>Initializes a new instance of the Appointment class with default settings.
</para>
</summary>
</member>
<member name="M:DevExpress.XtraScheduler.Appointment.#ctor(DevExpress.XtraScheduler.AppointmentType,System.DateTime,System.DateTime,System.String)">
<summary>
<para>Initializes a new instance of the <see cref="T:DevExpress.XtraScheduler.Appointment"/> class with the specified type, start date, end date and subject.
</para>
</summary>
<param name="type">
An <see cref="T:DevExpress.XtraScheduler.AppointmentType"/> enumeration value that specifies the type of the appointment. This value is assigned to the <see cref="P:DevExpress.XtraScheduler.Appointment.Type"/> property.
</param>
<param name="start">
A <see cref="T:System.DateTime"/> value that specifies the start date of the appointment. This value is assigned to the <see cref="P:DevExpress.XtraScheduler.Appointment.Start"/> property.
</param>
<param name="end">
A <see cref="T:System.DateTime"/> value that specifies the end date of the appointment. This value is assigned to the <see cref="P:DevExpress.XtraScheduler.Appointment.End"/> property.
</param>
<param name="subject">
A <see cref="T:System.String"/> value that specifies the subject of the appointment. This value is assigned to the <see cref="P:DevExpress.XtraScheduler.Appointment.Subject"/> property.
</param>
</member>
<member name="M:DevExpress.XtraScheduler.Appointment.#ctor(DevExpress.XtraScheduler.AppointmentType,System.DateTime,System.TimeSpan)">
<summary>
<para>Initializes a new instance of the <see cref="T:DevExpress.XtraScheduler.Appointment"/> class with the specified type, start date, and duration.
</para>
</summary>
<param name="type">
An <see cref="T:DevExpress.XtraScheduler.AppointmentType"/> enumeration value that specifies the type of the appointment. This value is assigned to the <see cref="P:DevExpress.XtraScheduler.Appointment.Type"/> property.
</param>
<param name="start">
A <see cref="T:System.DateTime"/> value that specifies the start date of the appointment. This value is assigned to the <see cref="P:DevExpress.XtraScheduler.Appointment.Start"/> property.
</param>
<param name="duration">
A <see cref="T:System.TimeSpan"/> value that specifies the duration of the appointment. This value is assigned to the <see cref="P:DevExpress.XtraScheduler.Appointment.Duration"/> property.
</param>
</member>
<member name="M:DevExpress.XtraScheduler.Appointment.#ctor(DevExpress.XtraScheduler.AppointmentType,System.DateTime,System.TimeSpan,System.String)">
<summary>
<para>Initializes a new instance of the <see cref="T:DevExpress.XtraScheduler.Appointment"/> class with the specified type, start date, duration and subject.
</para>
</summary>
<param name="type">
An <see cref="T:DevExpress.XtraScheduler.AppointmentType"/> enumeration value that specifies the type of the appointment. This value is assigned to the <see cref="P:DevExpress.XtraScheduler.Appointment.Type"/> property.
</param>
<param name="start">
A <see cref="T:System.DateTime"/> value that specifies the start date of the appointment. This value is assigned to the <see cref="P:DevExpress.XtraScheduler.Appointment.Start"/> property.
</param>
<param name="duration">
A <see cref="T:System.TimeSpan"/> value that specifies the duration of the appointment. This value is assigned to the <see cref="P:DevExpress.XtraScheduler.Appointment.Duration"/> property.
</param>
<param name="subject">
A <see cref="T:System.String"/> value that specifies the subject of the appointment. This value is assigned to the <see cref="P:DevExpress.XtraScheduler.Appointment.Subject"/> property.
</param>
</member>
<member name="M:DevExpress.XtraScheduler.Appointment.#ctor(DevExpress.XtraScheduler.AppointmentType)">
<summary>
<para>Initializes a new instance of the Appointment class of the specified type.
</para>
</summary>
<param name="type">
An <see cref="T:DevExpress.XtraScheduler.AppointmentType"/> enumeration value that specifies the type of the appointment. This value is assigned to the <see cref="P:DevExpress.XtraScheduler.Appointment.Type"/> property.
</param>
</member>
<member name="M:DevExpress.XtraScheduler.Appointment.#ctor(DevExpress.XtraScheduler.AppointmentType,System.DateTime,System.TimeSpan,System.String,System.Object)">
<summary>
<para>Initializes a new instance of the <see cref="T:DevExpress.XtraScheduler.Appointment"/> class with the specified type, start date, duration, subject and identifier.
</para>
</summary>
<param name="type">
An <see cref="T:DevExpress.XtraScheduler.AppointmentType"/> enumeration value that specifies the type of the appointment. This value is assigned to the <see cref="P:DevExpress.XtraScheduler.Appointment.Type"/> property.
</param>
<param name="start">
A <see cref="T:System.DateTime"/> value that specifies the start date of the appointment. This value is assigned to the <see cref="P:DevExpress.XtraScheduler.Appointment.Start"/> property.
</param>
<param name="duration">
A <see cref="T:System.TimeSpan"/> value that specifies the duration of the appointment. This value is assigned to the <see cref="P:DevExpress.XtraScheduler.Appointment.Duration"/> property.
</param>
<param name="subject">
A <see cref="T:System.String"/> value that specifies the subject of the appointment. This value is assigned to the <see cref="P:DevExpress.XtraScheduler.Appointment.Subject"/> property.
</param>
<param name="id">
An object specifying the unique identifier for an appointment.
</param>
</member>
<member name="P:DevExpress.XtraScheduler.Appointment.AllDay">
<summary>
<para>Gets or sets a value indicating if the current appointment is an <b>All-day</b> appointment.
</para>
</summary>
<value><b>true</b>, if this is an all-day appointment; otherwise, <b>false</b>.
</value>
</member>
<member name="P:DevExpress.XtraScheduler.Appointment.Appearance">
<summary>
<para>Gets the appearance settings used to paint the appointment.
</para>
</summary>
<value>A <see cref="T:DevExpress.Utils.AppearanceObject"/> object which contains the appointment's appearance settings.
</value>
</member>
<member name="M:DevExpress.XtraScheduler.Appointment.Copy">
<summary>
<para>Creates a copy of the current Appointment object.
</para>
</summary>
<returns>An Appointment object which is a copy of the current object.
</returns>
</member>
<member name="M:DevExpress.XtraScheduler.Appointment.CreateException(DevExpress.XtraScheduler.AppointmentType,System.Int32)">
<summary>
<para>Creates an exceptional appointment within a chain of recurring appointments.
</para>
</summary>
<param name="type">
An <see cref="T:DevExpress.XtraScheduler.AppointmentType"/> value that specifies the type of the exceptional appointment which will be created.
</param>
<param name="recurrenceIndex">
A zero-based integer which identifies the index in the chain of recurring appointments at which the new exceptional appointment will be created.
</param>
<returns>An <see cref="T:DevExpress.XtraScheduler.Appointment"/> object which specifies the newly created exceptional appointment.
</returns>
</member>
<member name="M:DevExpress.XtraScheduler.Appointment.CreateNewReminder">
<summary>
<para>Returns a new Reminder for this appointment.
</para>
</summary>
<returns>A <see cref="T:DevExpress.XtraScheduler.Reminder"/> object.
</returns>
</member>
<member name="P:DevExpress.XtraScheduler.Appointment.DefaultComparer">
<summary>
<para>Gets the comparer to be used for the Appointment.
</para>
</summary>
<value>An object that supports the <see cref="T:System.Collections.IComparer"/> interface.
</value>
</member>
<member name="M:DevExpress.XtraScheduler.Appointment.Delete">
<summary>
<para>Overrides the <see cref="M:DevExpress.XtraScheduler.PersistentObject.Delete"/> method.
</para>
</summary>
</member>
<member name="M:DevExpress.XtraScheduler.Appointment.DeleteExceptions">
<summary>
<para>Deletes changed and deleted occurrences for the current pattern appointment.
</para>
</summary>
</member>
<member name="P:DevExpress.XtraScheduler.Appointment.Description">
<summary>
<para>Gets or sets the text for the appointment's description.
</para>
</summary>
<value>A <see cref="T:System.String"/> value that specifies the appointment's description.
</value>
</member>
<member name="P:DevExpress.XtraScheduler.Appointment.Duration">
<summary>
<para>Gets or sets the duration of the appointment.
</para>
</summary>
<value>A <see cref="T:System.TimeSpan"/> value representing the duration of the appointment.
</value>
</member>
<member name="P:DevExpress.XtraScheduler.Appointment.End">
<summary>
<para>Gets or sets the end date and time of the appointment.
</para>
</summary>
<value>A <see cref="T:System.DateTime"/> value representing the end of the appointment.
</value>
</member>
<member name="M:DevExpress.XtraScheduler.Appointment.FromXml(System.String)">
<summary>
<para>Reconstructs an appointment from XML encoding.
</para>
</summary>
<param name="val">
A <see cref="T:System.String"/> value that specifies the XML encoding to use to reconstruct the appointment object.
</param>
</member>
<member name="M:DevExpress.XtraScheduler.Appointment.GetExceptions">
<summary>
<para>Returns a collection of the changed and deleted occurrences for the current pattern appointment.
</para>
</summary>
<returns>An <see cref="T:DevExpress.XtraScheduler.AppointmentBaseCollection"/> collection which contains the changed and deleted occurrences for the current pattern appointment.
</returns>
</member>
<member name="M:DevExpress.XtraScheduler.Appointment.GetOccurrence(System.Int32)">
<summary>
<para>Gets an occurrence at a specific position within a chain of recurring appointments.
</para>
</summary>
<param name="recurrenceIndex">
A zero-based integer which identifies the index of the required occurrence in the chain of recurring appointments.
</param>
<returns>An <see cref="T:DevExpress.XtraScheduler.Appointment"/> object which represents an occurrence at the specified position.
</returns>
</member>
<member name="M:DevExpress.XtraScheduler.Appointment.GetRow(DevExpress.XtraScheduler.SchedulerStorageBase)">
<summary>
<para>Provides access to the data record for the current appointment.
</para>
</summary>
<param name="storage">
A <see cref="T:DevExpress.XtraScheduler.SchedulerStorage"/> instance that provides data for the appointment.
</param>
<returns>A data source object (or the data row) that contains current appointment data.
</returns>
</member>
<member name="M:DevExpress.XtraScheduler.Appointment.GetValue(DevExpress.XtraScheduler.SchedulerStorageBase,System.String)">
<summary>
<para>Obtains the value of the specific field in the current appointment data record, supplied by the specified storage object.
</para>
</summary>
<param name="storage">
A <see cref="T:DevExpress.XtraScheduler.SchedulerStorage"/> instance that provides data for the appointment.
</param>
<param name="columnName">
A <see cref="T:System.String"/>, representing the data field's name.
</param>
<returns>A <see cref="T:System.Object"/>, representing the field's contents.
</returns>
</member>
<member name="P:DevExpress.XtraScheduler.Appointment.HasExceptions">
<summary>
<para>Gets whether changed or deleted occurrences have been created for the current pattern appointment.
</para>
</summary>
<value><b>true</b> if changed or deleted occurrences have been created for the current pattern appointment; otherwise, <b>false</b>.
</value>
</member>
<member name="P:DevExpress.XtraScheduler.Appointment.HasReminder">
<summary>
<para>Gets or sets a value that indicates whether one or more reminders are associated with the appointment.
</para>
</summary>
<value><b>true</b> if the appointment has at least one reminder; otherwise <b>false</b>.
</value>
</member>
<member name="P:DevExpress.XtraScheduler.Appointment.Id">
<summary>
<para>Gets an appointment identifier previously retrieved from an external database or set at runtime.
</para>
</summary>
<value>An object that is the appointment identifier.
</value>
</member>
<member name="P:DevExpress.XtraScheduler.Appointment.IsBase">
<summary>
<para>Gets a value indicating if the appointment is base (of the <b>Normal</b> or <b>Pattern</b> type).
</para>
</summary>
<value><b>true</b> if it's a base appointment; otherwise, <b>false</b>.
</value>
</member>
<member name="P:DevExpress.XtraScheduler.Appointment.IsException">
<summary>
<para>Gets a value indicating if the appointment is an exception (of the <b>ChangedOccurrence</b> or <b>DeletedOccurrence</b> type).
</para>
</summary>
<value><b>true</b> if it's an exception appointment; otherwise, <b>false</b>.
</value>
</member>
<member name="P:DevExpress.XtraScheduler.Appointment.IsOccurrence">
<summary>
<para>Gets a value indicating if the appointment is an occurrence (of the <b>Occurrence</b>, <b>ChangedOccurrence</b> or <b>DeletedOccurrence</b> type).
</para>
</summary>
<value><b>true</b> if it's an occurrence appointment; otherwise, <b>false</b>.
</value>
</member>
<member name="P:DevExpress.XtraScheduler.Appointment.IsRecurring">
<summary>
<para>Gets a value indicating if the appointment is recurring.
</para>
</summary>
<value><b>true</b> if the appointment is recurring; otherwise, <b>false</b>.
</value>
</member>
<member name="P:DevExpress.XtraScheduler.Appointment.LabelId">
<summary>
<para>Gets or sets the index of the label object associated with the appointment.
</para>
</summary>
<value>An integer value that specifies the index of the corresponding <see cref="T:DevExpress.XtraScheduler.AppointmentLabel"/> object within the <see cref="P:DevExpress.XtraScheduler.AppointmentStorage.Labels"/> collection.
</value>
</member>
<member name="P:DevExpress.XtraScheduler.Appointment.Location">
<summary>
<para>Gets or sets the text that specifies where the appointment is going to be.
</para>
</summary>
<value>A <see cref="T:System.String"/> value that specifies the appointment's location.
</value>
</member>
<member name="P:DevExpress.XtraScheduler.Appointment.LongerThanADay">
<summary>
<para>Gets a value that indicates whether the appointment's duration is equal to or greater than one day.
</para>
</summary>
<value><b>true</b> if the appointment lasts one day or more; otherwise, <b>false</b>.
</value>
</member>
<member name="P:DevExpress.XtraScheduler.Appointment.PercentComplete">
<summary>
<para>Gets or sets the value that describes the completion status of a task.
</para>
</summary>
<value>An integer from 0 to 100 indicating the percent of completion for the task. Zero indicates a task that has not yet been started; a value of 100 means that a task has been fully completed.
</value>
</member>
<member name="P:DevExpress.XtraScheduler.Appointment.RecurrenceIndex">
<summary>
<para>Gets a value that indicates which of the current appointment's reoccurrences the reoccurrence is.
</para>
</summary>
<value>An integer value that is the appointment's zero-based index within the series of the current appointment's reoccurrences
</value>
</member>
<member name="P:DevExpress.XtraScheduler.Appointment.RecurrenceInfo">
<summary>
<para>Gets an object that contains information about the reoccurrences of the appointment.
</para>
</summary>
<value>A <see cref="T:DevExpress.XtraScheduler.RecurrenceInfo"/> object that contains information about the appointment's reoccurrences.
</value>
</member>
<member name="P:DevExpress.XtraScheduler.Appointment.RecurrencePattern">
<summary>
<para>Gets the pattern appointment object which is the parent of the current appointment.
</para>
</summary>
<value>An <see cref="T:DevExpress.XtraScheduler.Appointment"/> object that represents the pattern appointment. <b>Null</b> if the current appointment is standalone.
</value>
</member>
<member name="P:DevExpress.XtraScheduler.Appointment.Reminder">
<summary>
<para>Gets the reminder which is associated with the appointment.
</para>
</summary>
<value>A <see cref="T:DevExpress.XtraScheduler.Reminder"/> object representing the reminder which is used to provide a notification of a future appointment. <b>null</b> (<b>Nothing</b> in Visual Basic) if no reminder is associated with the appointment.
</value>
</member>
<member name="P:DevExpress.XtraScheduler.Appointment.Reminders">
<summary>
<para>Gets a collection of reminders which are associated with this appointment.
</para>
</summary>
<value>A <see cref="T:DevExpress.XtraScheduler.ReminderCollection"/> object representing a collection of reminders which are used to provide a notification of a future appointment.
</value>
</member>
<member name="P:DevExpress.XtraScheduler.Appointment.ResourceId">
<summary>
<para>Gets or sets the unique identifier of the resource associated with the current appointment, or the ID of the first resource if resource sharing is enabled.
</para>
</summary>
<value>A <see cref="T:System.Object"/> value that specifies the resource's unique identifier.
</value>
</member>
<member name="P:DevExpress.XtraScheduler.Appointment.ResourceIds">
<summary>
<para>Gets the identifiers of all the resources which are associated with the current appointment.
</para>
</summary>
<value>An <see cref="T:DevExpress.XtraScheduler.AppointmentResourceIdCollection"/> object which contains all the resources' identifiers.
</value>
</member>
<member name="M:DevExpress.XtraScheduler.Appointment.RestoreOccurrence">
<summary>
<para>Replaces an exceptional appointment with the regular occurrence in the chain of recurring appointments.
</para>
</summary>
</member>
<member name="P:DevExpress.XtraScheduler.Appointment.SameDay">
<summary>
<para>Gets a value that indicates whether the appointment's start and end times are on the same day.
</para>
</summary>
<value><b>true</b> if the appointment takes place within a single day; <b>false</b> if the appointment's start and end times are on different days.
</value>
</member>
<member name="M:DevExpress.XtraScheduler.Appointment.SetValue(DevExpress.XtraScheduler.SchedulerStorageBase,System.String,System.Object)">
<summary>
<para>Performs a transaction to change the value of the specific field in the current appointment data record supplied by the specified storage object.
</para>
</summary>
<param name="storage">
A <see cref="T:DevExpress.XtraScheduler.SchedulerStorage"/> instance that stores data for the appointment.
</param>
<param name="columnName">
A <see cref="T:System.String"/>, representing the data field's name.
</param>
<param name="val">
A <see cref="T:System.Object"/>, representing the new value of the field.
</param>
</member>
<member name="P:DevExpress.XtraScheduler.Appointment.Start">
<summary>
<para>Gets or sets the start date and time of the appointment.
</para>
</summary>
<value>A <see cref="T:System.DateTime"/> value representing the start of the appointment.
</value>
</member>
<member name="P:DevExpress.XtraScheduler.Appointment.StatusId">
<summary>
<para>Gets or sets the index of the availability status object associated with the appointment.
</para>
</summary>
<value>An integer value that specifies the index of the corresponding <see cref="T:DevExpress.XtraScheduler.AppointmentStatus"/> object within the <see cref="P:DevExpress.XtraScheduler.AppointmentStorage.Statuses"/> collection.
</value>
</member>
<member name="P:DevExpress.XtraScheduler.Appointment.Subject">
<summary>
<para>Gets or sets the appointment's subject text.
</para>
</summary>
<value>A <see cref="T:System.String"/> value that specifies the appointment's subject text.
</value>
</member>
<member name="M:DevExpress.XtraScheduler.Appointment.ToXml">
<summary>
<para>Creates an XML encoding of an appointment.
</para>
</summary>
<returns>A <see cref="T:System.String"/> value that represents an XML encoding of an appointment.
</returns>
</member>
<member name="P:DevExpress.XtraScheduler.Appointment.Type">
<summary>
<para>Gets the type of the appointment.
</para>
</summary>
<value>An <see cref="T:DevExpress.XtraScheduler.AppointmentType"/> enumeration value which specifies the appointment's type.
</value>
</member>
<member name="E:DevExpress.XtraScheduler.Appointment.TypeChanged">
<summary>
<para>Occurs when the type of the appointment is changed.
</para>
</summary>
</member>
<member name="T:DevExpress.XtraScheduler.RecurrenceType">
<summary>
<para>Lists the types of recurrent appointments.
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.RecurrenceType.Daily">
<summary>
<para>The recurring appointment reoccurs on a <b>daily</b> base.
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.RecurrenceType.Hourly">
<summary>
<para>The recurring appointment reoccurs on an <b>hourly</b> base.
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.RecurrenceType.Minutely">
<summary>
<para>The recurring appointment reoccurs on a <b>minute</b> base.
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.RecurrenceType.Monthly">
<summary>
<para>The recurring appointment reoccurs on a <b>monthly</b> base.
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.RecurrenceType.Weekly">
<summary>
<para>The recurring appointment reoccurs on a <b>weekly</b> base.
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.RecurrenceType.Yearly">
<summary>
<para>The recurring appointment reoccurs on an <b>yearly</b> base.
</para>
</summary>
</member>
<member name="T:DevExpress.XtraScheduler.RecurrenceRange">
<summary>
<para>Lists the types of recurrence range.
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.RecurrenceRange.EndByDate">
<summary>
<para>A recurring appointment will end after the date specified by the <see cref="P:DevExpress.XtraScheduler.RecurrenceInfo.End"/> property.
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.RecurrenceRange.NoEndDate">
<summary>
<para>A recurring appointment will not have an end date.
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.RecurrenceRange.OccurrenceCount">
<summary>
<para>A recurring appointment will end after its recurrence count exceeds the value specified by the <see cref="P:DevExpress.XtraScheduler.RecurrenceInfo.OccurrenceCount"/> property.
</para>
</summary>
</member>
<member name="T:DevExpress.XtraScheduler.AppointmentType">
<summary>
<para>Lists the types of appointment.
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.AppointmentType.ChangedOccurrence">
<summary>
<para>Represents a recurring appointment, which was changed and now doesn't satisfy the pattern of the recurring series.
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.AppointmentType.DeletedOccurrence">
<summary>
<para>Represents a recurring appointment which was deleted from the series of other recurring appointments of the same pattern.
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.AppointmentType.Normal">
<summary>
<para>Represents a standard (non-recurring) appointment.
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.AppointmentType.Occurrence">
<summary>
<para>Represents a recurring appointment whose pattern appointment is specified via the <see cref="P:DevExpress.XtraScheduler.Appointment.RecurrencePattern"/> property.
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.AppointmentType.Pattern">
<summary>
<para>Represents the appointment which serves as the pattern for the other recurring appointments. The pattern for recurring appointments is specified via the <see cref="P:DevExpress.XtraScheduler.Appointment.RecurrenceInfo"/> property.
</para>
</summary>
</member>
<member name="T:DevExpress.XtraScheduler.Drawing.AppointmentViewInfoOptions">
<summary>
<para>Contains options that affect the visual representation of an appointment.
</para>
</summary>
</member>
<member name="M:DevExpress.XtraScheduler.Drawing.AppointmentViewInfoOptions.#ctor">
<summary>
<para>Initializes a new instance of the AppointmentViewInfoOptions class with default settings.
</para>
</summary>
</member>
<member name="P:DevExpress.XtraScheduler.Drawing.AppointmentViewInfoOptions.EndContinueItemDisplayType">
<summary>
<para>Gets or sets the type of sign to indicate that the appointment time ends beyond the visible interval of dates.
</para>
</summary>
<value>An <see cref="T:DevExpress.XtraScheduler.AppointmentContinueArrowDisplayType"/> enumeration specifying how appointment continuation is indicated.
</value>
</member>
<member name="P:DevExpress.XtraScheduler.Drawing.AppointmentViewInfoOptions.PercentCompleteDisplayType">
<summary>
<para>Gets or sets how the task progress is displayed within the appointment body.
</para>
</summary>
<value>A <see cref="T:DevExpress.XtraScheduler.PercentCompleteDisplayType"/> enumeration value that lists possible variants of the task progress display.
</value>
</member>
<member name="E:DevExpress.XtraScheduler.Drawing.AppointmentViewInfoOptions.PropertyChanged">
<summary>
<para>Occurs when a property value of any of the AppointmentViewInfo options changes.
</para>
</summary>
</member>
<member name="P:DevExpress.XtraScheduler.Drawing.AppointmentViewInfoOptions.ShowBell">
<summary>
<para>Gets or sets whether to display a bell icon indicating an associated reminder.
</para>
</summary>
<value><b>true</b> to display a bell icon; otherwise, <b>false</b>.
</value>
</member>
<member name="P:DevExpress.XtraScheduler.Drawing.AppointmentViewInfoOptions.ShowEndTime">
<summary>
<para>Gets or sets whether to display a time indicating the end of the appointment.
</para>
</summary>
<value><b>true</b> to display the time; otherwise, <b>false</b>.
</value>
</member>
<member name="P:DevExpress.XtraScheduler.Drawing.AppointmentViewInfoOptions.ShowRecurrence">
<summary>
<para>Gets or sets whether to display a recurrence symbol.
</para>
</summary>
<value><b>true</b> to display a symbol; otherwise, <b>false</b>.
</value>
</member>
<member name="P:DevExpress.XtraScheduler.Drawing.AppointmentViewInfoOptions.ShowStartTime">
<summary>
<para>Gets or sets whether to display a time indicating the start of the appointment.
</para>
</summary>
<value><b>true</b> to display the time; otherwise, <b>false</b>.
</value>
</member>
<member name="P:DevExpress.XtraScheduler.Drawing.AppointmentViewInfoOptions.ShowTimeAsClock">
<summary>
<para>Gets or sets whether to display the time as a clock with arrows.
</para>
</summary>
<value><b>true</b> to display the time as a clock symbol; otherwise, <b>false</b>.
</value>
</member>
<member name="P:DevExpress.XtraScheduler.Drawing.AppointmentViewInfoOptions.StartContinueItemDisplayType">
<summary>
<para>Gets or sets the type of sign to indicate that the appointment time starts beyond the visible interval of dates.
</para>
</summary>
<value>An <see cref="T:DevExpress.XtraScheduler.AppointmentContinueArrowDisplayType"/> enumeration specifying how appointment continuation is indicated.
</value>
</member>
<member name="P:DevExpress.XtraScheduler.Drawing.AppointmentViewInfoOptions.StatusDisplayType">
<summary>
<para>Gets or sets whether the border of an appointment should be colorized according to the status and appointment duration.
</para>
</summary>
<value>An <see cref="T:DevExpress.XtraScheduler.AppointmentStatusDisplayType"/> enumeration specifying how the status is displayed.
</value>
</member>
<member name="T:DevExpress.XtraScheduler.Drawing.IAppointmentViewInfo">
<summary>
<para>Defines options and characteristics used to display an appointment in a view.
</para>
</summary>
</member>
<member name="P:DevExpress.XtraScheduler.Drawing.IAppointmentViewInfo.AppointmentInterval">
<summary>
<para>Gets the time interval of the appointment.
</para>
</summary>
<value>A <see cref="T:DevExpress.XtraScheduler.TimeInterval"/> object representing the scheduled time.
</value>
</member>
<member name="P:DevExpress.XtraScheduler.Drawing.IAppointmentViewInfo.HasBottomBorder">
<summary>
<para>This member supports the internal infrastructure and is not intended to be used directly from your code.
</para>
</summary>
<value>
</value>
</member>
<member name="P:DevExpress.XtraScheduler.Drawing.IAppointmentViewInfo.HasLeftBorder">
<summary>
<para>This member supports the internal infrastructure and is not intended to be used directly from your code.
</para>
</summary>
<value>
</value>
</member>
<member name="P:DevExpress.XtraScheduler.Drawing.IAppointmentViewInfo.HasRightBorder">
<summary>
<para>This member supports the internal infrastructure and is not intended to be used directly from your code.
</para>
</summary>
<value>
</value>
</member>
<member name="P:DevExpress.XtraScheduler.Drawing.IAppointmentViewInfo.HasTopBorder">
<summary>
<para>This member supports the internal infrastructure and is not intended to be used directly from your code.
</para>
</summary>
<value>
</value>
</member>
<member name="P:DevExpress.XtraScheduler.Drawing.IAppointmentViewInfo.Interval">
<summary>
<para>Specifies the time interval of the time cells covered by the appointment.
</para>
</summary>
<value>A <see cref="T:DevExpress.XtraScheduler.TimeInterval"/> object representing the time range of the time cells.
</value>
</member>
<member name="M:DevExpress.XtraScheduler.Drawing.IAppointmentViewInfo.IsLongTime">
<summary>
<para>Indicates whether an appointment spans across several days.
</para>
</summary>
<returns><b>true</b> if an appointment spans across several days; otherwise, <b>false</b>.
</returns>
</member>
<member name="P:DevExpress.XtraScheduler.Drawing.IAppointmentViewInfo.Options">
<summary>
<para>Provides access to several characteristics determining how an appointment is displayed.
</para>
</summary>
<value>An <see cref="T:DevExpress.XtraScheduler.Drawing.AppointmentViewInfoOptions"/> object containing certain appointment view characteristics.
</value>
</member>
<member name="P:DevExpress.XtraScheduler.Drawing.IAppointmentViewInfo.Resource">
<summary>
<para>Provides access to the resource associated with the current appointment view.
</para>
</summary>
<value>A <see cref="T:DevExpress.XtraScheduler.Resource"/> object, representing a resource associated with an appointment.
</value>
</member>
<member name="T:DevExpress.XtraScheduler.Outlook.OutlookImport">
<summary>
<para>Represents an object that imports MS Outlook calendar items into Scheduler appointments.
</para>
</summary>
</member>
<member name="M:DevExpress.XtraScheduler.Outlook.OutlookImport.#ctor(DevExpress.XtraScheduler.SchedulerStorageBase)">
<summary>
<para>Initializes a new instance of the OutlookImport class with the specified Scheduler storage.
</para>
</summary>
<param name="storage">
A <see cref="T:DevExpress.XtraScheduler.SchedulerStorage"/> object representing a storage to which Outlook objects are imported.
</param>
</member>
<member name="P:DevExpress.XtraScheduler.Outlook.OutlookImport.CalendarFolderName">
<summary>
<para>Gets or sets the name of the calendar folder (MAPI) from which appointments are retrieved.
</para>
</summary>
<value>A string representing the name of a calendar folder.
</value>
</member>
<member name="M:DevExpress.XtraScheduler.Outlook.OutlookImport.Import(System.String)">
<summary>
<para>Imports appointments from the currently installed MS Outlook instance to the Scheduler.
</para>
</summary>
<param name="path">
Always String.Empty. Otherwise an exception is thrown.
</param>
</member>
<member name="M:DevExpress.XtraScheduler.Outlook.OutlookImport.SetCalendarProvider(DevExpress.XtraScheduler.Outlook.IOutlookCalendarProvider)">
<summary>
<para>Specifies a custom provider to process a collection of Outlook objects, before they are loaded into the Scheduler storage.
</para>
</summary>
<param name="provider">
An object implementing the <see cref="T:DevExpress.XtraScheduler.Outlook.IOutlookCalendarProvider"/> interface.
</param>
</member>
<member name="T:DevExpress.XtraScheduler.SchedulerOptionsViewBase">
<summary>
<para>Defines a base class for view options for the Scheduler control.
</para>
</summary>
</member>
<member name="M:DevExpress.XtraScheduler.SchedulerOptionsViewBase.Assign(DevExpress.Utils.Controls.BaseOptions)">
<summary>
<para>Copies all settings from the options object passed as the parameter to the current object.
</para>
</summary>
<param name="options">
A SchedulerOptionsViewBase object (which is the <see cref="T:DevExpress.Utils.Controls.BaseOptions"/> descendant) whose settings are assigned to the current object.
</param>
</member>
<member name="P:DevExpress.XtraScheduler.SchedulerOptionsViewBase.FirstDayOfWeek">
<summary>
<para>Gets or sets the day which the scheduler's view week starts from.
</para>
</summary>
<value>A <see cref="T:DevExpress.XtraScheduler.FirstDayOfWeek"/> enumeration value specifying the start day of the week for the View.
</value>
</member>
<member name="P:DevExpress.XtraScheduler.SchedulerOptionsViewBase.NavigationButtons">
<summary>
<para>Provides access to the navigation button's options.
</para>
</summary>
<value>A <see cref="T:DevExpress.XtraScheduler.SchedulerNavigationButtonOptions"/> class, containing options for displaying Navigation Buttons.
</value>
</member>
<member name="P:DevExpress.XtraScheduler.SchedulerOptionsViewBase.ShowOnlyResourceAppointments">
<summary>
<para>Gets or sets a value that specifies whether appointments that do not belong to any resource are visible in the scheduling area.
</para>
</summary>
<value><b>true</b> to display only the appointments that are associated with resources; <b>false</b> to display all appointments.
</value>
</member>
<member name="T:DevExpress.XtraScheduler.Native.HolidaysHelper">
<summary>
<para>Provides methods used to generate appointments for the scheduler holidays.
</para>
</summary>
</member>
<member name="M:DevExpress.XtraScheduler.Native.HolidaysHelper.CreateHolidayAppointment(DevExpress.Schedule.Holiday,DevExpress.XtraScheduler.SchedulerStorageBase)">
<summary>
<para>Creates a new all-day appointment scheduled for the specified holiday.
</para>
</summary>
<param name="holiday">
A <see cref="T:DevExpress.Schedule.Holiday"/> object which specifies a day that is recognized as a holiday.
</param>
<param name="storage">
A <see cref="T:DevExpress.XtraScheduler.SchedulerStorageBase"/> object required for creating an appointment instance.
</param>
<returns>An <see cref="T:DevExpress.XtraScheduler.Appointment"/> object which specifies the newly created appointment.
</returns>
</member>
<member name="M:DevExpress.XtraScheduler.Native.HolidaysHelper.GenerateHolidayAppointments(DevExpress.XtraScheduler.SchedulerStorageBase,DevExpress.XtraScheduler.WorkDaysCollection)">
<summary>
<para>Creates all-day appointments for the collection of holidays added to the specified <see cref="P:DevExpress.XtraScheduler.SchedulerControl.WorkDays"/> collection of the scheduler.
</para>
</summary>
<param name="storage">
A <see cref="T:DevExpress.XtraScheduler.SchedulerStorageBase"/> object.
</param>
<param name="workDays">
A <see cref="T:DevExpress.XtraScheduler.WorkDaysCollection"/> object containing information about holidays for which appointments should be generated.
</param>
<returns>An <see cref="T:DevExpress.XtraScheduler.AppointmentBaseCollection"/> collection of generated appointments.
</returns>
</member>
<member name="T:DevExpress.XtraScheduler.TimeScale15Minutes">
<summary>
<para>A time scale whose time cell value is equal to <b>15 minutes</b>.
</para>
</summary>
</member>
<member name="M:DevExpress.XtraScheduler.TimeScale15Minutes.#ctor">
<summary>
<para>Initializes a new instance of the TimeScale15Minutes class with the default settings.
</para>
</summary>
</member>
<member name="P:DevExpress.XtraScheduler.TimeScale15Minutes.Value">
<summary>
<para>Gets the value of the scale unit - a time interval equal to 15 minutes.
</para>
</summary>
<value>A <see cref="T:System.TimeSpan"/> value specifying the time interval of a scale unit.
</value>
</member>
<member name="T:DevExpress.XtraScheduler.CellsAutoHeightOptions">
<summary>
<para>Holds options used to set the auto height cell behavior.
</para>
</summary>
</member>
<member name="M:DevExpress.XtraScheduler.CellsAutoHeightOptions.#ctor">
<summary>
<para>Initializes a new instance of the CellsAutoHeightOptions class with default settings.
</para>
</summary>
</member>
<member name="M:DevExpress.XtraScheduler.CellsAutoHeightOptions.Assign(DevExpress.Utils.Controls.BaseOptions)">
<summary>
<para>Copies all the settings from the CellsAutoHeightOptions object passed as a parameter.
</para>
</summary>
<param name="options">
A CellsAutoHeightOptions object (which is the <see cref="T:DevExpress.Utils.Controls.BaseOptions"/> descendant) whose settings are assigned to the current object. If <b>null</b> (<b>Nothing</b> in Visual Basic), then a <see cref="T:System.ArgumentNullException"/> will be thrown.
</param>
</member>
<member name="P:DevExpress.XtraScheduler.CellsAutoHeightOptions.Enabled">
<summary>
<para>Gets or sets whether the height of a time cell should be automatically adjusted to fit appointments.
</para>
</summary>
<value><b>true</b> to switch auto height adjustment on; otherwise, <b>false</b>.
</value>
</member>
<member name="P:DevExpress.XtraScheduler.CellsAutoHeightOptions.MinHeight">
<summary>
<para>Gets or sets the minimum height of time cells for a resource that can be set when using the CellsAutoHeight mode.
</para>
</summary>
<value>An integer value specifying the cell height in pixels.
</value>
</member>
<member name="T:DevExpress.XtraScheduler.RangeControlAdjustEventHandler">
<summary>
<para>A method that will handle the <see cref="E:DevExpress.XtraScheduler.SchedulerControl.RangeControlAutoAdjusting"/> event.
</para>
</summary>
</member>
<member name="M:DevExpress.XtraScheduler.RangeControlAdjustEventHandler.Invoke(System.Object,DevExpress.XtraScheduler.RangeControlAdjustEventArgs)">
<summary>
<para>A method that will handle the <see cref="E:DevExpress.XtraScheduler.SchedulerControl.RangeControlAutoAdjusting"/> event.
</para>
</summary>
<param name="sender">
The event source. This parameter identifies the <see cref="T:DevExpress.XtraScheduler.SchedulerControl"/> which raised the event.
</param>
<param name="e">
A <see cref="T:DevExpress.XtraScheduler.RangeControlAdjustEventArgs"/> object which contains event data.
</param>
</member>
<member name="T:DevExpress.XtraScheduler.RangeControlAdjustEventArgs">
<summary>
<para>Provides data for the <see cref="E:DevExpress.XtraScheduler.SchedulerControl.RangeControlAutoAdjusting"/> event.
</para>
</summary>
</member>
<member name="M:DevExpress.XtraScheduler.RangeControlAdjustEventArgs.#ctor">
<summary>
<para>Initializes a new instance of the RangeControlAdjustEventArgs class with default settings.
</para>
</summary>
</member>
<member name="P:DevExpress.XtraScheduler.RangeControlAdjustEventArgs.RangeMaximum">
<summary>
<para>Gets or sets the end bound of the range that will be available in the RangeControl after it is automatically adjusted.
</para>
</summary>
<value>A <see cref="T:System.DateTime"/> object that is the end bound of the RangeControl's total range.
</value>
</member>
<member name="P:DevExpress.XtraScheduler.RangeControlAdjustEventArgs.RangeMinimum">
<summary>
<para>Gets or sets the start bound of the range that will be available in the RangeControl after it is automatically adjusted.
</para>
</summary>
<value>A <see cref="T:System.DateTime"/> object that is start bound of the RangeControl's total range.
</value>
</member>
<member name="P:DevExpress.XtraScheduler.RangeControlAdjustEventArgs.Scales">
<summary>
<para>Provides access to the collection of scales that will be visible in the RangeControl after it is automatically adjusted.
</para>
</summary>
<value>A <see cref="T:DevExpress.XtraScheduler.TimeScaleCollection"/> object specifying a set of RangeControl scales.
</value>
</member>
<member name="T:DevExpress.XtraScheduler.RangeControlDataDisplayType">
<summary>
<para>Lists the values used to specify how appointment data should be displayed within a <see cref="T:DevExpress.XtraEditors.RangeControl"/> when it is bound to a <see cref="T:DevExpress.XtraScheduler.SchedulerControl"/>.
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.RangeControlDataDisplayType.Auto">
<summary>
<para>Appointment data contained in a SchedulerControl is shown by the RangeControl as either appointment thumbnails or numbers of appointments in each interval.
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.RangeControlDataDisplayType.Number">
<summary>
<para>Each interval in the RangeControl shows a number of appointments contained in the corresponding time interval in a SchedulerControl.
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.RangeControlDataDisplayType.Thumbnail">
<summary>
<para>Appointment data contained in SchedulerControl is shown by RangeControl as appointment thumbnails, each of which is colored according to a label of the corresponding appointment.
</para>
</summary>
</member>
<member name="T:DevExpress.XtraScheduler.Reporting.ISmartSyncOptions">
<summary>
<para>Provides options specific for the SmartSync Printing feature.
</para>
</summary>
</member>
<member name="P:DevExpress.XtraScheduler.Reporting.ISmartSyncOptions.GroupType">
<summary>
<para>When implemented by a class, gets or sets the grouping type used for creating report pages if the <b>EnableSmartSync</b> option of the scheduler print adapter is switched on.
</para>
</summary>
<value>A <see cref="T:DevExpress.XtraScheduler.SchedulerGroupType"/> enumeration member specifying the grouping type for SmartSync printing.
</value>
</member>
<member name="T:DevExpress.XtraScheduler.ResourceNavigatorVisibility">
<summary>
<para>Lists the visibility modes of the resource navigator.
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.ResourceNavigatorVisibility.Always">
<summary>
<para>Resource Navigator is always visible.
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.ResourceNavigatorVisibility.Auto">
<summary>
<para>Resource Navigator is visible if the <see cref="P:DevExpress.XtraScheduler.SchedulerViewBase.ResourcesPerPage"/> property value is other than <b>0</b>.
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.ResourceNavigatorVisibility.Never">
<summary>
<para>Resource navigator is never visible.
</para>
</summary>
</member>
<member name="T:DevExpress.XtraScheduler.AppointmentDependencyType">
<summary>
<para>Specifies when a task should start and end in relation to another task.
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.AppointmentDependencyType.FinishToFinish">
<summary>
<para><para>Dependent task cannot finish before the Parent task is finished.
</para>
<para>A data record for the appointment dependency of this type is shown above. The integer value of the enum is 2.</para>
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.AppointmentDependencyType.FinishToStart">
<summary>
<para><para>Dependent task cannot start before the Parent task is finished.
</para>
<para>A data record for the appointment dependency of this type is shown above. The integer value of the enum is 0.</para>
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.AppointmentDependencyType.StartToFinish">
<summary>
<para><para>Dependent task cannot finish before the Parent task starts.
</para>
<para>A data record for the appointment dependency of this type is shown above. The integer value of the enum is 3.</para>
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.AppointmentDependencyType.StartToStart">
<summary>
<para><para>Dependent task cannot start before the Parent task starts.
</para>
<para>A data record for the appointment dependency of this type is shown above. The integer value of the enum is 1.</para>
</para>
</summary>
</member>
<member name="T:DevExpress.XtraScheduler.Outlook.OutlookCalendarProvider">
<summary>
<para>Implements the <see cref="T:DevExpress.XtraScheduler.Outlook.IOutlookCalendarProvider"/> interface, facilitating the creation of descendants.
</para>
</summary>
</member>
<member name="M:DevExpress.XtraScheduler.Outlook.OutlookCalendarProvider.#ctor">
<summary>
<para>Initializes a new instance of the OutlookCalendarProvider class with default settings.
</para>
</summary>
</member>
<member name="T:DevExpress.XtraScheduler.VisibleResourcesChangedEventHandler">
<summary>
<para>A method that will handle the <see cref="E:DevExpress.XtraScheduler.SchedulerControl.VisibleResourcesChanged"/> and <see cref="E:DevExpress.Xpf.Scheduler.SchedulerControl.VisibleResourcesChanged"/> events.
</para>
</summary>
</member>
<member name="M:DevExpress.XtraScheduler.VisibleResourcesChangedEventHandler.Invoke(System.Object,DevExpress.XtraScheduler.VisibleResourcesChangedEventArgs)">
<summary>
<para>A method that will handle the <see cref="E:DevExpress.XtraScheduler.SchedulerControl.VisibleResourcesChanged"/> and <see cref="E:DevExpress.Xpf.Scheduler.SchedulerControl.VisibleResourcesChanged"/> events.
</para>
</summary>
<param name="sender">
The event sender (typically the <b>SchedulerControl</b>).
</param>
<param name="args">
A <see cref="T:DevExpress.XtraScheduler.VisibleResourcesChangedEventArgs"/> object that contains event data.
</param>
</member>
<member name="T:DevExpress.XtraScheduler.VisibleResourcesChangedEventArgs">
<summary>
<para>Provides data for the <see cref="E:DevExpress.XtraScheduler.SchedulerControl.VisibleResourcesChanged"/> and the <see cref="E:DevExpress.Xpf.Scheduler.SchedulerControl.VisibleResourcesChanged"/> events.
</para>
</summary>
</member>
<member name="M:DevExpress.XtraScheduler.VisibleResourcesChangedEventArgs.#ctor(DevExpress.XtraScheduler.ResourceBaseCollection)">
<summary>
<para>Initializes a new instance of the VisibleResourcesChangedEventArgs class with the specified settings.
</para>
</summary>
<param name="innerResourceCollection">
[To be supplied]
</param>
</member>
<member name="M:DevExpress.XtraScheduler.VisibleResourcesChangedEventArgs.GetVisibleResources">
<summary>
<para>Obtains a collection of visible resources.
</para>
</summary>
<returns>A <see cref="T:DevExpress.XtraScheduler.ResourceBaseCollection"/> object that is the collection of resources.
</returns>
</member>
<member name="P:DevExpress.XtraScheduler.VisibleResourcesChangedEventArgs.NewFirstVisibleResourceIndex">
<summary>
<para>Gets the index of the first (the leftmost or the topmost, depending on the view) resource displayed in the view after the change of visible resources occurs.
</para>
</summary>
<value>An integer that is the index of a resource in the <see cref="P:DevExpress.XtraScheduler.Drawing.SchedulerViewInfoBase.VisibleResources"/> collection.
</value>
</member>
<member name="P:DevExpress.XtraScheduler.VisibleResourcesChangedEventArgs.NewResourcePerPage">
<summary>
<para>Gets the new number of displayed resources.
</para>
</summary>
<value>An integer that is the number of resources.
</value>
</member>
<member name="P:DevExpress.XtraScheduler.VisibleResourcesChangedEventArgs.OldFirstVisibleResourceIndex">
<summary>
<para>Gets the index of the first (the leftmost or the topmost, depending on the view) resource displayed in the view before the change of visible resources occurs.
</para>
</summary>
<value>An integer that is the index of a resource in the <see cref="P:DevExpress.XtraScheduler.Drawing.SchedulerViewInfoBase.VisibleResources"/> collection.
</value>
</member>
<member name="P:DevExpress.XtraScheduler.VisibleResourcesChangedEventArgs.OldResourcePerPage">
<summary>
<para>Gets the number of displayed resources before the change takes place.
</para>
</summary>
<value>An integer that is the number of resources.
</value>
</member>
<member name="T:DevExpress.XtraScheduler.iCalendar.iCalendarParseExceptionEventArgs">
<summary>
<para>Provides data for the <see cref="E:DevExpress.XtraScheduler.Exchange.AppointmentExchanger.OnException"/> event of the <see cref="T:DevExpress.XtraScheduler.iCalendar.iCalendarImporter"/> and <see cref="T:DevExpress.XtraScheduler.iCalendar.iCalendarExporter"/> classes.
</para>
</summary>
</member>
<member name="M:DevExpress.XtraScheduler.iCalendar.iCalendarParseExceptionEventArgs.#ctor(System.Exception,System.String,System.Int32)">
<summary>
<para>Initializes a new instance of the iCalendarParseExceptionEventArgs class with the specified settings
</para>
</summary>
<param name="originalException">
A <see cref="T:System.Exception"/> object representing the original exception thrown.
</param>
<param name="lineText">
A string containing a line of text in iCalendar format that caused a parse error.
</param>
<param name="lineIndex">
An integer representing the erroneous line number in an iCalendar file.
</param>
</member>
<member name="P:DevExpress.XtraScheduler.iCalendar.iCalendarParseExceptionEventArgs.LineIndex">
<summary>
<para>Gets the number of a line in an iCalendar file that contains the text which causes an error while parsing.
</para>
</summary>
<value>An integer that is the number of the erroneous line.
</value>
</member>
<member name="P:DevExpress.XtraScheduler.iCalendar.iCalendarParseExceptionEventArgs.LineText">
<summary>
<para>Gets the text causing a parse error.
</para>
</summary>
<value>A string containing the text of the line in iCalendar format.
</value>
</member>
<member name="T:DevExpress.XtraScheduler.Reporting.WorkTimeValidationEventHandler">
<summary>
<para>Represents a method that will handle the <see cref="E:DevExpress.XtraScheduler.Reporting.SchedulerPrintAdapter.ValidateWorkTime"/> event.
</para>
</summary>
</member>
<member name="M:DevExpress.XtraScheduler.Reporting.WorkTimeValidationEventHandler.Invoke(System.Object,DevExpress.XtraScheduler.Reporting.WorkTimeValidationEventArgs)">
<summary>
<para>Represents a method that will handle the <see cref="E:DevExpress.XtraScheduler.Reporting.SchedulerPrintAdapter.ValidateWorkTime"/> event.
</para>
</summary>
<param name="sender">
The event source. This parameter identifies the <see cref="T:DevExpress.XtraScheduler.Reporting.SchedulerPrintAdapter"/> which raised the event.
</param>
<param name="e">
A <see cref="T:DevExpress.XtraScheduler.Reporting.WorkTimeValidationEventArgs"/> object which contains event data.
</param>
</member>
<member name="T:DevExpress.XtraScheduler.Reporting.WorkTimeValidationEventArgs">
<summary>
<para>Provides data for the <see cref="E:DevExpress.XtraScheduler.Reporting.SchedulerPrintAdapter.ValidateWorkTime"/> event of the <see cref="T:DevExpress.XtraScheduler.Reporting.SchedulerPrintAdapter"/> descendant controls.
</para>
</summary>
</member>
<member name="M:DevExpress.XtraScheduler.Reporting.WorkTimeValidationEventArgs.#ctor(DevExpress.XtraScheduler.TimeOfDayIntervalCollection,DevExpress.XtraScheduler.TimeInterval,DevExpress.XtraScheduler.Resource)">
<summary>
<para>Initializes a new instance of the WorkTimeValidationEventArgs class with the specified time intervals.
</para>
</summary>
<param name="workTimes">
A <see cref="T:DevExpress.XtraScheduler.TimeOfDayIntervalCollection"/> containing work times for a single day.
</param>
<param name="timeInterval">
A <see cref="T:DevExpress.XtraScheduler.TimeInterval"/> object representing the time interval for which the work times are validated.
</param>
<param name="resource">
A <see cref="T:DevExpress.XtraScheduler.Resource"/> object representing a resource for which the work times are validated.
</param>
</member>
<member name="P:DevExpress.XtraScheduler.Reporting.WorkTimeValidationEventArgs.Resource">
<summary>
<para>Provides access to a resource, for which the work-time interval is validated.
</para>
</summary>
<value>A <see cref="T:DevExpress.XtraScheduler.Resource"/> object.
</value>
</member>
<member name="P:DevExpress.XtraScheduler.Reporting.WorkTimeValidationEventArgs.TimeInterval">
<summary>
<para>Provides access to a time interval, for which the work-time interval is validated.
</para>
</summary>
<value>A <see cref="T:DevExpress.XtraScheduler.TimeInterval"/> object.
</value>
</member>
<member name="P:DevExpress.XtraScheduler.Reporting.WorkTimeValidationEventArgs.WorkTime">
<summary>
<para>Gets or sets the work-time interval to be validated.
</para>
</summary>
<value>A <see cref="T:DevExpress.XtraScheduler.TimeOfDayInterval"/> object.
</value>
</member>
<member name="P:DevExpress.XtraScheduler.Reporting.WorkTimeValidationEventArgs.WorkTimes">
<summary>
<para>Provides access to the collection of work times specified for a single day.
</para>
</summary>
<value>A <see cref="T:DevExpress.XtraScheduler.TimeOfDayIntervalCollection"/> representing time intervals for a day.
</value>
</member>
<member name="T:DevExpress.XtraScheduler.Reporting.TimeIntervalsValidationEventHandler">
<summary>
<para>Represents a method that will handle the <see cref="E:DevExpress.XtraScheduler.Reporting.SchedulerPrintAdapter.ValidateTimeIntervals"/> event.
</para>
</summary>
</member>
<member name="M:DevExpress.XtraScheduler.Reporting.TimeIntervalsValidationEventHandler.Invoke(System.Object,DevExpress.XtraScheduler.Reporting.TimeIntervalsValidationEventArgs)">
<summary>
<para>Represents a method that will handle the <see cref="E:DevExpress.XtraScheduler.Reporting.SchedulerPrintAdapter.ValidateTimeIntervals"/> event.
</para>
</summary>
<param name="sender">
The event source. This parameter identifies the <see cref="T:DevExpress.XtraScheduler.Reporting.SchedulerPrintAdapter"/> which raised the event.
</param>
<param name="e">
A <see cref="T:DevExpress.XtraScheduler.Reporting.TimeIntervalsValidationEventArgs"/> object which contains event data.
</param>
</member>
<member name="T:DevExpress.XtraScheduler.Reporting.TimeIntervalsValidationEventArgs">
<summary>
<para>Provides data for the <see cref="E:DevExpress.XtraScheduler.Reporting.SchedulerPrintAdapter.ValidateTimeIntervals"/> event of the <see cref="T:DevExpress.XtraScheduler.Reporting.SchedulerPrintAdapter"/> descendants.
</para>
</summary>
</member>
<member name="M:DevExpress.XtraScheduler.Reporting.TimeIntervalsValidationEventArgs.#ctor(DevExpress.XtraScheduler.TimeIntervalCollection)">
<summary>
<para>Initializes a new instance of the TimeIntervalsValidationEventArgs class with the specified time interval settings.
</para>
</summary>
<param name="intervals">
A <see cref="T:DevExpress.XtraScheduler.TimeIntervalCollection"/> object containing time intervals.
</param>
</member>
<member name="P:DevExpress.XtraScheduler.Reporting.TimeIntervalsValidationEventArgs.Intervals">
<summary>
<para>Gets the time intervals for which the report is being built.
</para>
</summary>
<value>A <see cref="T:DevExpress.XtraScheduler.TimeIntervalCollection"/> containing the report's time intervals.
</value>
</member>
<member name="T:DevExpress.XtraScheduler.Reporting.ResourcesValidationEventHandler">
<summary>
<para>Represents a method that will handle the <see cref="E:DevExpress.XtraScheduler.Reporting.SchedulerPrintAdapter.ValidateResources"/> event.
</para>
</summary>
</member>
<member name="M:DevExpress.XtraScheduler.Reporting.ResourcesValidationEventHandler.Invoke(System.Object,DevExpress.XtraScheduler.Reporting.ResourcesValidationEventArgs)">
<summary>
<para>Represents a method that will handle the <see cref="E:DevExpress.XtraScheduler.Reporting.SchedulerPrintAdapter.ValidateResources"/> event.
</para>
</summary>
<param name="sender">
The event source. This parameter identifies the <see cref="T:DevExpress.XtraScheduler.Reporting.SchedulerPrintAdapter"/> which raised the event.
</param>
<param name="e">
A <see cref="T:DevExpress.XtraScheduler.Reporting.ResourcesValidationEventArgs"/> object which contains event data.
</param>
</member>
<member name="T:DevExpress.XtraScheduler.Reporting.ResourcesValidationEventArgs">
<summary>
<para>Provides data for the <see cref="E:DevExpress.XtraScheduler.Reporting.SchedulerPrintAdapter.ValidateResources"/> event of the <see cref="T:DevExpress.XtraScheduler.Reporting.SchedulerPrintAdapter"/> descendant controls.
</para>
</summary>
</member>
<member name="M:DevExpress.XtraScheduler.Reporting.ResourcesValidationEventArgs.#ctor(DevExpress.XtraScheduler.ResourceBaseCollection)">
<summary>
<para>Initializes a new instance of the ResourcesValidationEventArgs class with the specified resources.
</para>
</summary>
<param name="resources">
A <see cref="T:DevExpress.XtraScheduler.ResourceBaseCollection"/> object representing a collection of resources.
</param>
</member>
<member name="P:DevExpress.XtraScheduler.Reporting.ResourcesValidationEventArgs.Resources">
<summary>
<para>Provides access to the collection of resources available in the report.
</para>
</summary>
<value>A <see cref="T:DevExpress.XtraScheduler.ResourceBaseCollection"/> object containing resources for the report.
</value>
</member>
<member name="T:DevExpress.XtraScheduler.Xml.ReminderCollectionXmlPersistenceHelper">
<summary>
<para>Provides methods to load reminders from XML and export them in the same way as they are stored in the bound data source.
</para>
</summary>
</member>
<member name="M:DevExpress.XtraScheduler.Xml.ReminderCollectionXmlPersistenceHelper.CreateSaveInstance(DevExpress.XtraScheduler.Appointment,DevExpress.XtraScheduler.DateSavingType)">
<summary>
<para>Creates and initializes an instance of the helper for serializing the reminder collection using XML format.
</para>
</summary>
<param name="apt">
An <see cref="T:DevExpress.XtraScheduler.Appointment"/> containing reminders.
</param>
<param name="dateSaving">
A <see cref="T:DevExpress.XtraScheduler.DateSavingType"/> enumeration member that specifies whether the datetime values should be modified using time zone information.
</param>
<returns>An instance of the <see cref="T:DevExpress.XtraScheduler.Xml.ReminderCollectionXmlPersistenceHelper"/>.
</returns>
</member>
<member name="M:DevExpress.XtraScheduler.Xml.ReminderCollectionXmlPersistenceHelper.ObjectFromXml(DevExpress.XtraScheduler.Appointment,System.Xml.XmlNode,DevExpress.XtraScheduler.DateSavingType)">
<summary>
<para>Loads the reminder collection from XML data.
</para>
</summary>
<param name="apt">
An <see cref="T:DevExpress.XtraScheduler.Appointment"/> for which reminders are loaded.
</param>
<param name="root">
A <see cref="T:System.Xml.XmlDocument"/> object that is the root node in the XML document.
</param>
<param name="dateSaving">
A <see cref="T:DevExpress.XtraScheduler.DateSavingType"/> enumeration member that specifies how the datetime values are interpreted.
</param>
<returns>A <see cref="T:DevExpress.XtraScheduler.ReminderCollection"/> object that is the collection of reminders for an appointment.
</returns>
</member>
<member name="M:DevExpress.XtraScheduler.Xml.ReminderCollectionXmlPersistenceHelper.ObjectFromXml(DevExpress.XtraScheduler.Appointment,System.String,DevExpress.XtraScheduler.DateSavingType)">
<summary>
<para>Loads the reminder collection from an XML string.
</para>
</summary>
<param name="apt">
An <see cref="T:DevExpress.XtraScheduler.Appointment"/> for which reminders are loaded.
</param>
<param name="xml">
A string that is the XML representation of a reminder collection.
</param>
<param name="dateSaving">
A <see cref="T:DevExpress.XtraScheduler.DateSavingType"/> enumeration member that specifies how the datetime values are interpreted.
</param>
<returns>A <see cref="T:DevExpress.XtraScheduler.ReminderCollection"/> object that is the collection of reminders for an appointment.
</returns>
</member>
<member name="T:DevExpress.XtraScheduler.Tools.IntervalFoundEventHandler">
<summary>
<para>Represents a method that will handle the <see cref="E:DevExpress.XtraScheduler.Tools.FreeTimeCalculator.IntervalFound"/> event.
</para>
</summary>
</member>
<member name="M:DevExpress.XtraScheduler.Tools.IntervalFoundEventHandler.Invoke(System.Object,DevExpress.XtraScheduler.Tools.IntervalFoundEventArgs)">
<summary>
<para>Represents a method that will handle the <see cref="E:DevExpress.XtraScheduler.Tools.FreeTimeCalculator.IntervalFound"/> event.
</para>
</summary>
<param name="sender">
The event source. This parameter identifies the <see cref="T:DevExpress.XtraScheduler.Tools.FreeTimeCalculator"/> object which raised the event.
</param>
<param name="e">
A <see cref="T:DevExpress.XtraScheduler.Tools.IntervalFoundEventArgs"/> object which contains event data.
</param>
</member>
<member name="T:DevExpress.XtraScheduler.Reporting.SchedulerPrintAdapter">
<summary>
<para>A base class for print adapters of the XtraSchedulerReport.
</para>
</summary>
</member>
<member name="P:DevExpress.XtraScheduler.Reporting.SchedulerPrintAdapter.ClientTimeZoneId">
<summary>
<para>Gets or sets the string identifier of the time zone used by the print adapter.
</para>
</summary>
<value>A string that uniquely identifies the time zone. The value is equal to that returned by the System.TimeZoneInfo.Id property.
</value>
</member>
<member name="E:DevExpress.XtraScheduler.Reporting.SchedulerPrintAdapter.ClientTimeZoneIdChanged">
<summary>
<para>Occurs when the <see cref="P:DevExpress.XtraScheduler.Reporting.SchedulerPrintAdapter.ClientTimeZoneId"/> property value is changed.
</para>
</summary>
</member>
<member name="P:DevExpress.XtraScheduler.Reporting.SchedulerPrintAdapter.EnableSmartSync">
<summary>
<para>Gets or sets whether different controls in a report should synchronize their data iterations (the SmartSync Printing feature).
</para>
</summary>
<value><b>true</b> to enable the SmartSync Printing feature; otherwise, <b>false</b>.
</value>
</member>
<member name="P:DevExpress.XtraScheduler.Reporting.SchedulerPrintAdapter.FirstDayOfWeek">
<summary>
<para>Gets or sets the day that the scheduler week starts from.
</para>
</summary>
<value>A <see cref="T:System.DayOfWeek"/> enumeration value, specifying the start day of the week for the scheduler.
</value>
</member>
<member name="E:DevExpress.XtraScheduler.Reporting.SchedulerPrintAdapter.FirstDayOfWeekChanged">
<summary>
<para>Occurs when the <see cref="P:DevExpress.XtraScheduler.Reporting.SchedulerPrintAdapter.FirstDayOfWeek"/> property value is changed.
</para>
</summary>
</member>
<member name="M:DevExpress.XtraScheduler.Reporting.SchedulerPrintAdapter.GetAppointments(DevExpress.XtraScheduler.TimeInterval,DevExpress.XtraScheduler.ResourceBaseCollection)">
<summary>
<para>Retrieves the collection of appointments that fall within the specified time interval associated with the specified resource.
</para>
</summary>
<param name="timeInterval">
A <see cref="T:DevExpress.XtraScheduler.TimeInterval"/> object which identifies the required time interval.
</param>
<param name="resources">
A <see cref="T:DevExpress.XtraScheduler.ResourceBaseCollection"/> object which specifies the resources associated with the targeted appointments.
</param>
<returns>An <see cref="T:DevExpress.XtraScheduler.AppointmentBaseCollection"/> collection of appointments which meets the specified criteria.
</returns>
</member>
<member name="M:DevExpress.XtraScheduler.Reporting.SchedulerPrintAdapter.GetClientTimeZoneId">
<summary>
<para>Gets or sets the string identifier of the time zone used by the print adapter.
</para>
</summary>
<returns>A string that uniquely identifies the time zone. The value is equal to that returned by the System.TimeZoneInfo.Id property.
</returns>
</member>
<member name="M:DevExpress.XtraScheduler.Reporting.SchedulerPrintAdapter.GetFirstDayOfWeek">
<summary>
<para>Gets the <see cref="P:DevExpress.XtraScheduler.SchedulerControl.FirstDayOfWeek"/> value specified for the Scheduler control.
</para>
</summary>
<returns>A <see cref="T:System.DayOfWeek"/> enumeration value specifying the start day of the week for the Scheduler.
</returns>
</member>
<member name="M:DevExpress.XtraScheduler.Reporting.SchedulerPrintAdapter.GetLabelColor(System.Int32)">
<summary>
<para>Returns the color of the specified Appointment Label.
</para>
</summary>
<param name="labelId">
A zero-based integer value which identifies a label.
</param>
<returns>A <see cref="T:System.Drawing.Color"/> structure which represents the label's color. A <b>Color.White</b> value if the label isn't found.
</returns>
</member>
<member name="M:DevExpress.XtraScheduler.Reporting.SchedulerPrintAdapter.GetResourceColorSchemas">
<summary>
<para>Returns a collection of color schemas used for visual representation of Resources in the Scheduler.
</para>
</summary>
<returns>A <see cref="T:DevExpress.XtraScheduler.SchedulerColorSchemaCollection"/> which contains color schemas for the scheduler's resources.
</returns>
</member>
<member name="M:DevExpress.XtraScheduler.Reporting.SchedulerPrintAdapter.GetResources">
<summary>
<para>Obtains a collection of visible resources.
</para>
</summary>
<returns>A <see cref="T:DevExpress.XtraScheduler.ResourceBaseCollection"/> object containing currently visible resources.
</returns>
</member>
<member name="M:DevExpress.XtraScheduler.Reporting.SchedulerPrintAdapter.GetService(System.Type)">
<summary>
<para>Gets the service object of the specified type.
</para>
</summary>
<param name="serviceType">
An object that specifies the type of service object to get.
</param>
<returns>A service object of the specified type, or a null reference (<b>Nothing</b> in Visual Basic) if there is no service object of this type.
</returns>
</member>
<member name="M:DevExpress.XtraScheduler.Reporting.SchedulerPrintAdapter.GetStatus(System.Int32)">
<summary>
<para>Returns the Appointment's Status by its ID.
</para>
</summary>
<param name="statusId">
An integer, specifying the status ID.
</param>
<returns>An <see cref="T:DevExpress.XtraScheduler.AppointmentStatusBase"/> object which represents the status of the appointment.
</returns>
</member>
<member name="M:DevExpress.XtraScheduler.Reporting.SchedulerPrintAdapter.GetTimeIntervals">
<summary>
<para>Obtains the time interval for display.
</para>
</summary>
<returns>A <see cref="T:DevExpress.XtraScheduler.TimeIntervalCollection"/> object containing time intervals used for displaying appointments.
</returns>
</member>
<member name="M:DevExpress.XtraScheduler.Reporting.SchedulerPrintAdapter.GetWorkDays">
<summary>
<para>Obtains the collection which identifies which days are assigned to a workweek.
</para>
</summary>
<returns>A <see cref="T:DevExpress.XtraScheduler.WorkDaysCollection"/> object which identifies work days.
</returns>
</member>
<member name="M:DevExpress.XtraScheduler.Reporting.SchedulerPrintAdapter.GetWorkTime(DevExpress.XtraScheduler.TimeInterval,DevExpress.XtraScheduler.Resource)">
<summary>
<para>Gets a report's work times for a specified time interval and resource.
</para>
</summary>
<param name="interval">
A <see cref="T:DevExpress.XtraScheduler.TimeInterval"/> object specifying the queried time interval.
</param>
<param name="resource">
A <see cref="T:DevExpress.XtraScheduler.Resource"/> specifying the resource for which the work times are queried.
</param>
<returns>A <see cref="T:DevExpress.XtraScheduler.TimeIntervalCollection"/> collection containing work times for a single day.
</returns>
</member>
<member name="E:DevExpress.XtraScheduler.Reporting.SchedulerPrintAdapter.ResourceColorsChanged">
<summary>
<para>Occurs when the <see cref="P:DevExpress.XtraScheduler.Reporting.SchedulerPrintAdapter.ResourceColorSchemas"/> collection is modified.
</para>
</summary>
</member>
<member name="P:DevExpress.XtraScheduler.Reporting.SchedulerPrintAdapter.ResourceColorSchemas">
<summary>
<para>Gets the color schemas used to paint resources in the report.
</para>
</summary>
<value>A <see cref="T:DevExpress.XtraScheduler.SchedulerColorSchemaCollection"/> object which contains color schemas used to display resources.
</value>
</member>
<member name="P:DevExpress.XtraScheduler.Reporting.SchedulerPrintAdapter.ResourceCount">
<summary>
<para>Gets the number of displayed resources.
</para>
</summary>
<value>An integer, representing the number of resources.
</value>
</member>
<member name="E:DevExpress.XtraScheduler.Reporting.SchedulerPrintAdapter.SchedulerSourceChanged">
<summary>
<para>Occurs when the Scheduler source of the print adapter is changed.
</para>
</summary>
</member>
<member name="M:DevExpress.XtraScheduler.Reporting.SchedulerPrintAdapter.SetSourceObject(System.Object)">
<summary>
<para>Specifies the object used to get the scheduling data - the SchedulerStorage or the SchedulerControl object.
</para>
</summary>
<param name="sourceObject">
A <see cref="T:DevExpress.XtraScheduler.SchedulerStorage"/> or the <see cref="T:DevExpress.XtraScheduler.SchedulerControl"/> object.
</param>
</member>
<member name="P:DevExpress.XtraScheduler.Reporting.SchedulerPrintAdapter.SmartSyncOptions">
<summary>
<para>Provides access to options specific to the SmartSync Printing feature.
</para>
</summary>
<value>An object exposing the <see cref="T:DevExpress.XtraScheduler.Reporting.ISmartSyncOptions"/> interface, allowing you to specify SmartSync-specific options.
</value>
</member>
<member name="P:DevExpress.XtraScheduler.Reporting.SchedulerPrintAdapter.TimeInterval">
<summary>
<para>Gets or sets the time interval used by the print adapter to create a report.
</para>
</summary>
<value>A <see cref="T:DevExpress.XtraScheduler.TimeInterval"/> object representing the time interval.
</value>
</member>
<member name="E:DevExpress.XtraScheduler.Reporting.SchedulerPrintAdapter.TimeIntervalChanged">
<summary>
<para>Occurs when the <see cref="P:DevExpress.XtraScheduler.Reporting.SchedulerPrintAdapter.TimeInterval"/> value is changed.
</para>
</summary>
</member>
<member name="E:DevExpress.XtraScheduler.Reporting.SchedulerPrintAdapter.ValidateAppointments">
<summary>
<para>Occurs when appointments are retrieved to create a report document.
</para>
</summary>
</member>
<member name="E:DevExpress.XtraScheduler.Reporting.SchedulerPrintAdapter.ValidateResources">
<summary>
<para>Occurs when resources are obtained for use in the report.
</para>
</summary>
</member>
<member name="E:DevExpress.XtraScheduler.Reporting.SchedulerPrintAdapter.ValidateTimeIntervals">
<summary>
<para>Occurs when the print adapter retrieves information on time intervals required for creating a report.
</para>
</summary>
</member>
<member name="E:DevExpress.XtraScheduler.Reporting.SchedulerPrintAdapter.ValidateWorkTime">
<summary>
<para>Occurs when the print adapter retrieves the work time value for use in the report.
</para>
</summary>
</member>
<member name="P:DevExpress.XtraScheduler.Reporting.SchedulerPrintAdapter.WorkTime">
<summary>
<para>Gets or sets the work time interval for a day.
</para>
</summary>
<value>A <see cref="T:DevExpress.XtraScheduler.TimeOfDayInterval"/> value representing the work time interval.
</value>
</member>
<member name="E:DevExpress.XtraScheduler.Reporting.SchedulerPrintAdapter.WorkTimeChanged">
<summary>
<para>Occurs when the <see cref="P:DevExpress.XtraScheduler.Reporting.SchedulerPrintAdapter.WorkTime"/> property is modified.
</para>
</summary>
</member>
<member name="T:DevExpress.XtraScheduler.PercentCompleteDisplayType">
<summary>
<para>Specifies how the percentage of completion is displayed for appointments (tasks) within the Gantt view.
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.PercentCompleteDisplayType.BarProgress">
<summary>
<para><para>Displays bar shading.</para>
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.PercentCompleteDisplayType.Both">
<summary>
<para><para>Displays percentage of completion as bar shading and a percent number.</para>
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.PercentCompleteDisplayType.None">
<summary>
<para><para>Does not display percentage of completion.</para>
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.PercentCompleteDisplayType.Number">
<summary>
<para><para>Displays bar shading and a percent number.</para>
</para>
</summary>
</member>
<member name="T:DevExpress.XtraScheduler.GanttViewAppointmentDisplayOptions">
<summary>
<para>Provides options which define how appointments are displayed within the Gantt view.
</para>
</summary>
</member>
<member name="M:DevExpress.XtraScheduler.GanttViewAppointmentDisplayOptions.#ctor">
<summary>
<para>Initializes a new instance of the GanttViewAppointmentDisplayOptions class with default settings.
</para>
</summary>
</member>
<member name="M:DevExpress.XtraScheduler.GanttViewAppointmentDisplayOptions.Assign(DevExpress.Utils.Controls.BaseOptions)">
<summary>
<para>Copies all the settings from the GanttViewAppointmentDisplayOptions object passed as a parameter.
</para>
</summary>
<param name="options">
An GanttViewAppointmentDisplayOptions object (which is the <see cref="T:DevExpress.Utils.Controls.BaseOptions"/> descendant) whose settings are assigned to the current object. If <b>null</b> (<b>Nothing</b> in Visual Basic), then a <see cref="T:System.ArgumentNullException"/> will be thrown.
</param>
</member>
<member name="P:DevExpress.XtraScheduler.GanttViewAppointmentDisplayOptions.PercentCompleteDisplayType">
<summary>
<para>Gets or sets how the task progress is displayed in the <b>Gantt view</b>.
</para>
</summary>
<value>A <see cref="T:DevExpress.XtraScheduler.PercentCompleteDisplayType"/> enumeration value that lists possible variants of the task progress display.
</value>
</member>
<member name="T:DevExpress.XtraScheduler.AppointmentDependencyCollection">
<summary>
<para>A collection of appointment dependencies.
</para>
</summary>
</member>
<member name="M:DevExpress.XtraScheduler.AppointmentDependencyCollection.#ctor">
<summary>
<para>Initializes a new instance of the AppointmentDependencyCollection class with default settings.
</para>
</summary>
</member>
<member name="M:DevExpress.XtraScheduler.AppointmentDependencyCollection.#ctor(DevExpress.XtraScheduler.SchedulerStorageBase)">
<summary>
<para>Initializes a new instance of the AppointmentDependencyCollection class with the specified storage.
</para>
</summary>
<param name="storage">
A <see cref="T:DevExpress.XtraScheduler.SchedulerStorageBase"/> object that is the storage to which the appointment dependency collection belongs.
</param>
</member>
<member name="M:DevExpress.XtraScheduler.AppointmentDependencyCollection.ReadXml(System.IO.Stream)">
<summary>
<para>Reads the settings of the appointment dependencies from the specified stream.
</para>
</summary>
<param name="stream">
A <see cref="T:System.IO.Stream"/> descendant from which appointments are read. If <b>null</b> (<b>Nothing</b> in Visual Basic), an exception is raised.
</param>
</member>
<member name="M:DevExpress.XtraScheduler.AppointmentDependencyCollection.ReadXml(System.String)">
<summary>
<para>Reads the settings of the appointment dependencies from the specified XML file.
</para>
</summary>
<param name="fileName">
A <see cref="T:System.String"/> value specifying the path to the file from which appointments should be read. If an empty string is specified, an exception is raised.
</param>
</member>
<member name="P:DevExpress.XtraScheduler.AppointmentDependencyCollection.Storage">
<summary>
<para>Provides access to the storage object for an appointment dependency collection.
</para>
</summary>
<value>A <see cref="T:DevExpress.XtraScheduler.SchedulerStorageBase"/> type class instance.
</value>
</member>
<member name="M:DevExpress.XtraScheduler.AppointmentDependencyCollection.WriteXml(System.IO.Stream)">
<summary>
<para>Saves all the appointment dependencies within the collection to the specified stream.
</para>
</summary>
<param name="stream">
A <see cref="T:System.IO.Stream"/> descendant to which the appointment dependencies should be written. If <b>null</b> (<b>Nothing</b> in Visual Basic), an exception is raised.
</param>
</member>
<member name="M:DevExpress.XtraScheduler.AppointmentDependencyCollection.WriteXml(System.String)">
<summary>
<para>Saves all the appointment dependencies within the collection to an XML file.
</para>
</summary>
<param name="fileName">
A <see cref="T:System.String"/> value specifying the path to the file where the appointments should be written. If an empty string is specified, an exception is raised.
</param>
</member>
<member name="T:DevExpress.XtraScheduler.AppointmentDependencyBaseCollection">
<summary>
<para>A collection of appoinment dependencies.
</para>
</summary>
</member>
<member name="M:DevExpress.XtraScheduler.AppointmentDependencyBaseCollection.#ctor">
<summary>
<para>Initializes a new instance of the AppointmentDependencyBaseCollection class with default settings.
</para>
</summary>
</member>
<member name="M:DevExpress.XtraScheduler.AppointmentDependencyBaseCollection.GetDependenciesByDependentId(System.Object)">
<summary>
<para>Gets the appointment dependency by an identifier of the dependent appointment.
</para>
</summary>
<param name="dependentId">
An object that is the unique identifier of the dependent appointment.
</param>
<returns>An <see cref="T:DevExpress.XtraScheduler.AppointmentDependency"/> object.
</returns>
</member>
<member name="M:DevExpress.XtraScheduler.AppointmentDependencyBaseCollection.GetDependenciesByParentId(System.Object)">
<summary>
<para>Gets the appointment dependency by an identifier of the parent appointment.
</para>
</summary>
<param name="parentId">
An object that is the unique identifier of the parent appointment.
</param>
<returns>An <see cref="T:DevExpress.XtraScheduler.AppointmentDependency"/> object.
</returns>
</member>
<member name="M:DevExpress.XtraScheduler.AppointmentDependencyBaseCollection.GetDependencyByIds(System.Object,System.Object)">
<summary>
<para>Gets the appointment dependency by identifiers of both the parent and dependent appointment.
</para>
</summary>
<param name="parentId">
An object that is the unique identifier of the parent appointment.
</param>
<param name="dependentId">
An object that is the unique identifier of the dependent appointment.
</param>
<returns>An <see cref="T:DevExpress.XtraScheduler.AppointmentDependency"/> object.
</returns>
</member>
<member name="T:DevExpress.XtraScheduler.Tools.IntervalFoundEventArgs">
<summary>
<para>Provides data for the <see cref="E:DevExpress.XtraScheduler.Tools.FreeTimeCalculator.IntervalFound"/> event.
</para>
</summary>
</member>
<member name="M:DevExpress.XtraScheduler.Tools.IntervalFoundEventArgs.#ctor(DevExpress.XtraScheduler.TimeIntervalCollectionEx,DevExpress.XtraScheduler.Resource)">
<summary>
<para>Initializes a new instance of the IntervalFoundEventArgs class with the specified settings.
</para>
</summary>
<param name="freeIntervals">
A <see cref="T:DevExpress.XtraScheduler.TimeIntervalCollectionEx"/> collection, containing the discovered time interval.
</param>
<param name="resource">
A <see cref="T:DevExpress.XtraScheduler.Resource"/>, representing the resource for which the free time interval is found.
</param>
</member>
<member name="P:DevExpress.XtraScheduler.Tools.IntervalFoundEventArgs.FreeIntervals">
<summary>
<para>Gets or sets a collection, containing the discovered free interval.
</para>
</summary>
<value>A <see cref="T:DevExpress.XtraScheduler.TimeIntervalCollectionEx"/> collection object.
</value>
</member>
<member name="P:DevExpress.XtraScheduler.Tools.IntervalFoundEventArgs.Resource">
<summary>
<para>Gets or sets a resource for appointments which are taken into account when a search for a free time is performed.
</para>
</summary>
<value>A <see cref="T:DevExpress.XtraScheduler.Resource"/> object, representing the resource assigned to appointments involved in a search.
</value>
</member>
<member name="T:DevExpress.XtraScheduler.MappingInfoBase`1">
<summary>
<para>Serves as the base class for classes which represent mappings of data fields to default persistent object's properties.
</para>
</summary>
</member>
<member name="P:DevExpress.XtraScheduler.MappingInfoBase`1.DataManager">
<summary>
<para>Override this property to provide access to a collection's DataManager.
</para>
</summary>
<value>Always returns <b>null</b>.
</value>
</member>
<member name="M:DevExpress.XtraScheduler.MappingInfoBase`1.GetRequiredMappingNames">
<summary>
<para>Gets the names of the mappings which are required for correct operation.
</para>
</summary>
<returns>A string array, containing mapping names.
</returns>
</member>
<member name="T:DevExpress.XtraScheduler.MouseWheelScrollAction">
<summary>
<para>Lists scrolling interpretations for the bidirectional mouse wheel.
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.MouseWheelScrollAction.Auto">
<summary>
<para>Scrolling of the bidirectional mouse wheel results in the ScheduleControl scrolling in the same direction - horizontally or vertically.
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.MouseWheelScrollAction.Time">
<summary>
<para>Scrolling the mouse wheel results in the ScheduleControl navigating time.
</para>
</summary>
</member>
<member name="T:DevExpress.XtraScheduler.AppointmentDependencyCustomFieldMappingCollection">
<summary>
<para>A collection of mappings of the custom properties of appointments to appropriate data fields.
</para>
</summary>
</member>
<member name="M:DevExpress.XtraScheduler.AppointmentDependencyCustomFieldMappingCollection.#ctor">
<summary>
<para>Initializes a new instance of the AppointmentDependencyCustomFieldMappingCollection class with the default settings.
</para>
</summary>
</member>
<member name="M:DevExpress.XtraScheduler.AppointmentDependencyCustomFieldMappingCollection.Add(DevExpress.XtraScheduler.AppointmentDependencyCustomFieldMapping)">
<summary>
<para>Appends the specified <see cref="T:DevExpress.XtraScheduler.AppointmentDependencyCustomFieldMapping"/> object to the storage's collection of custom fields mappings.
</para>
</summary>
<param name="mapping">
An <see cref="T:DevExpress.XtraScheduler.AppointmentDependencyCustomFieldMapping"/> object to append to the collection.
</param>
<returns>An integer value indicating the position at which the new element was inserted.
</returns>
</member>
<member name="P:DevExpress.XtraScheduler.AppointmentDependencyCustomFieldMappingCollection.Item(System.String)">
<summary>
<para>Provides access to individual items in the collection by their names.
</para>
</summary>
<param name="name">
A <see cref="T:System.String"/> value specifying the name of the custom field to get.
</param>
<value>An <see cref="T:DevExpress.XtraScheduler.AppointmentDependencyCustomFieldMapping"/> object which represents the custom field mapping with the specified name.
</value>
</member>
<member name="P:DevExpress.XtraScheduler.AppointmentDependencyCustomFieldMappingCollection.Item(System.Int32)">
<summary>
<para>Provides indexed access to individual items in the collection.
</para>
</summary>
<param name="index">
A zero-based integer specifying the desired item's position within the collection. If it's negative or exceeds the last available index, an exception is raised.
</param>
<value>An <see cref="T:DevExpress.XtraScheduler.AppointmentCustomFieldMapping"/> object which represents the custom field mapping at the specified position.
</value>
</member>
<member name="T:DevExpress.XtraScheduler.AppointmentDependencyCustomFieldMapping">
<summary>
<para>Specifies mapping of a custom property of an appointment dependency to an appropriate data field.
</para>
</summary>
</member>
<member name="M:DevExpress.XtraScheduler.AppointmentDependencyCustomFieldMapping.#ctor">
<summary>
<para>Initializes a new instance of the AppointmentDependencyCustomFieldMapping class with default settings.
</para>
</summary>
</member>
<member name="M:DevExpress.XtraScheduler.AppointmentDependencyCustomFieldMapping.#ctor(System.String,System.String)">
<summary>
<para>Initializes a new instance of the AppointmentDependencyCustomFieldMapping class with the specified name and member.
</para>
</summary>
<param name="name">
A <see cref="T:System.String"/> value that specifies the name of the custom field. This value is assigned to the <see cref="P:DevExpress.XtraScheduler.CustomFieldMappingBase`1.Name"/> property.
</param>
<param name="member">
A <see cref="T:System.String"/> value that specifies the member value of the custom field mapping. This value is assigned to the <see cref="P:DevExpress.XtraScheduler.AppointmentDependencyCustomFieldMapping.Member"/> property.
</param>
</member>
<member name="M:DevExpress.XtraScheduler.AppointmentDependencyCustomFieldMapping.#ctor(System.String,System.String,DevExpress.XtraScheduler.FieldValueType)">
<summary>
<para>Initializes a new instance of the AppointmentDependencyCustomFieldMapping class with the specified name, member and value type.
</para>
</summary>
<param name="name">
A <see cref="T:System.String"/> value that specifies the name of the custom field. This value is assigned to the <see cref="P:DevExpress.XtraScheduler.CustomFieldMappingBase`1.Name"/> property.
</param>
<param name="member">
A <see cref="T:System.String"/> value that specifies the member value of the custom field mapping. This value is assigned to the <see cref="P:DevExpress.XtraScheduler.AppointmentDependencyCustomFieldMapping.Member"/> property.
</param>
<param name="valueType">
A <see cref="T:DevExpress.XtraScheduler.FieldValueType"/> enumeration value, representing one of the standard value types.
</param>
</member>
<member name="P:DevExpress.XtraScheduler.AppointmentDependencyCustomFieldMapping.Member">
<summary>
<para>Gets or sets the name of the member in a data source which should be mapped to a specific property.
</para>
</summary>
<value>A <see cref="T:System.String"/> value which represents the data member to be mapped.
</value>
</member>
<member name="T:DevExpress.XtraScheduler.SchedulerNavigationButtonOptions">
<summary>
<para>Provides options which define certain characteristics of Navigation Buttons.
</para>
</summary>
</member>
<member name="M:DevExpress.XtraScheduler.SchedulerNavigationButtonOptions.#ctor">
<summary>
<para>Initializes a new instance of the SchedulerNavigationButtonOptions class with default settings.
</para>
</summary>
</member>
<member name="P:DevExpress.XtraScheduler.SchedulerNavigationButtonOptions.AppointmentSearchInterval">
<summary>
<para>Specifies the time span used by Navigation Buttons to search for the nearest appointments (in days), so it is limited to a reasonable range.
</para>
</summary>
<value>A System.TimeSpan value, specifying the search range.
</value>
</member>
<member name="M:DevExpress.XtraScheduler.SchedulerNavigationButtonOptions.Assign(DevExpress.Utils.Controls.BaseOptions)">
<summary>
<para>Copies all settings from the options object passed as the parameter to the current object.
</para>
</summary>
<param name="options">
A SchedulerNavigationButtonOptions object (which is the <see cref="T:DevExpress.Utils.Controls.BaseOptions"/> descendant) whose settings are assigned to the current object.
</param>
</member>
<member name="P:DevExpress.XtraScheduler.SchedulerNavigationButtonOptions.NextCaption">
<summary>
<para>Gets or sets the caption for the right (forward) navigation button.
</para>
</summary>
<value>A <see cref="T:System.String"/> representing a text to display on the button.
</value>
</member>
<member name="P:DevExpress.XtraScheduler.SchedulerNavigationButtonOptions.PrevCaption">
<summary>
<para>Gets or sets the caption for the left (backward) navigation button.
</para>
</summary>
<value>A <see cref="T:System.String"/> representing a text to display on the button.
</value>
</member>
<member name="P:DevExpress.XtraScheduler.SchedulerNavigationButtonOptions.Visibility">
<summary>
<para>Specifies whether the buttons are always visible, always hidden or their visibility depends on the situation.
</para>
</summary>
<value>A <see cref="T:DevExpress.XtraScheduler.NavigationButtonVisibility"/> enumeration member.
</value>
</member>
<member name="T:DevExpress.XtraScheduler.FieldValueType">
<summary>
<para>Contains values that specify the data type of the mapped data column in the unbound mode.
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.FieldValueType.Boolean">
<summary>
<para>Indicates that the mapped data column contains Boolean values (the <see cref="T:System.Boolean"/> type).
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.FieldValueType.DateTime">
<summary>
<para>Indicates that the data column contains date/time values (the <see cref="T:System.DateTime"/> type).
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.FieldValueType.Decimal">
<summary>
<para>Indicates that the data column contains decimal values (the <see cref="T:System.Decimal"/> type).
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.FieldValueType.Integer">
<summary>
<para>Indicates that the data column contains integer values (the <see cref="T:System.Int32"/> type).
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.FieldValueType.Object">
<summary>
<para>Indicates that the data column contains values of any type.
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.FieldValueType.String">
<summary>
<para>Indicates that the data column contains string values (the <see cref="T:System.String"/> type).
</para>
</summary>
</member>
<member name="T:DevExpress.XtraScheduler.AppointmentDependencySelectionChangeAction">
<summary>
<para>Specifies how the selection is applied to the specified appointment dependency.
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.AppointmentDependencySelectionChangeAction.Add">
<summary>
<para>The appointment dependency is added to the collection of selected dependencies, available via the <see cref="P:DevExpress.XtraScheduler.SchedulerControl.SelectedDependencies"/> property.
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.AppointmentDependencySelectionChangeAction.Clear">
<summary>
<para>The <see cref="P:DevExpress.XtraScheduler.SchedulerControl.SelectedDependencies"/> collection is cleared.
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.AppointmentDependencySelectionChangeAction.None">
<summary>
<para>Does nothing.
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.AppointmentDependencySelectionChangeAction.Select">
<summary>
<para>Adds the specified dependency to the collection of selected dependencies.
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.AppointmentDependencySelectionChangeAction.Toggle">
<summary>
<para>Changes the selection state of the dependency to the alternative.
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.AppointmentDependencySelectionChangeAction.Unselect">
<summary>
<para>Deselects the specified dependency.
</para>
</summary>
</member>
<member name="T:DevExpress.XtraScheduler.AllowDisplayAppointmentDependencyForm">
<summary>
<para>Lists the values used to specify whether the <b>Appointment Dependency</b> dialog can be displayed or not.
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.AllowDisplayAppointmentDependencyForm.Always">
<summary>
<para>Appointment Dependency dialog is always shown when standard actions are performed to invoke it.
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.AllowDisplayAppointmentDependencyForm.Auto">
<summary>
<para>Internal Scheduler logic dictates whether the Appointment Dependency dialog can be shown.
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.AllowDisplayAppointmentDependencyForm.Never">
<summary>
<para>Appointment Dependency dialog is never shown.
</para>
</summary>
</member>
<member name="T:DevExpress.XtraScheduler.CustomFieldMappingCollectionBase`1">
<summary>
<para>Serves as the base class for classes that represent collections of custom mappings of the properties of persistent objects (appointments or resources).
</para>
</summary>
</member>
<member name="M:DevExpress.XtraScheduler.CustomFieldMappingCollectionBase`1.#ctor">
<summary>
<para>Initializes a new instance of the CustomFieldMappingCollectionBase class with the default settings.
</para>
</summary>
</member>
<member name="M:DevExpress.XtraScheduler.CustomFieldMappingCollectionBase`1.Add(DevExpress.XtraScheduler.CustomFieldMappingBase`1)">
<summary>
<para>Adds the specified object to the current collection.
</para>
</summary>
<param name="mapping">
A <b>DevExpress.XtraScheduler.CustomFieldMappingBase</b> object to append to the collection.
</param>
<returns>An integer value indicating the position of the element.
</returns>
</member>
<member name="P:DevExpress.XtraScheduler.CustomFieldMappingCollectionBase`1.Item(System.String)">
<summary>
<para>Provides indexed access to individual items in the collection by their names.
</para>
</summary>
<param name="name">
A <see cref="T:System.String"/> value specifying the name of the custom field to get.
</param>
<value>A <see cref="T:DevExpress.XtraScheduler.CustomFieldMappingBase`1"/> object which represents the custom field mapping with the specified name.
</value>
</member>
<member name="P:DevExpress.XtraScheduler.CustomFieldMappingCollectionBase`1.Item(System.Int32)">
<summary>
<para>Provides indexed access to individual items in the collection.
</para>
</summary>
<param name="index">
A zero-based integer specifying the desired item's position within the collection. If it's negative or exceeds the last available index, an exception is raised.
</param>
<value>A <see cref="T:DevExpress.XtraScheduler.CustomFieldMappingBase`1"/> object which represents the custom field mapping at the specified position.
</value>
</member>
<member name="T:DevExpress.XtraScheduler.CustomFieldMappingBase`1">
<summary>
<para>Serves as the base class for classes that provide mapping of the custom properties of persistent objects (appointments or resources) to appropriate data fields.
</para>
</summary>
</member>
<member name="P:DevExpress.XtraScheduler.CustomFieldMappingBase`1.Member">
<summary>
<para>Gets or sets the name of the member in a datasource which should be mapped to a specific property.
</para>
</summary>
<value>A <see cref="T:System.String"/> value which represents the data member to be mapped.
</value>
</member>
<member name="P:DevExpress.XtraScheduler.CustomFieldMappingBase`1.Name">
<summary>
<para>Gets or sets the name of the property which should be mapped to a specific member in a datasource.
</para>
</summary>
<value>A <see cref="T:System.String"/> value which represents the property name to be mapped.
</value>
</member>
<member name="P:DevExpress.XtraScheduler.CustomFieldMappingBase`1.Type">
<summary>
<para>Gets the type of this custom field mapping object.
</para>
</summary>
<value>A System.Type which represents the type of this custom field mapping object.
</value>
</member>
<member name="P:DevExpress.XtraScheduler.CustomFieldMappingBase`1.ValueType">
<summary>
<para>Gets or sets the value type of a custom field.
</para>
</summary>
<value>A <see cref="T:DevExpress.XtraScheduler.FieldValueType"/> enumeration member, specifying the type of a custom field.
</value>
</member>
<member name="T:DevExpress.XtraScheduler.PersistentObjectStorage`1">
<summary>
<para>Represents a base class for the storage of persistent objects (appointments and resources).
</para>
</summary>
</member>
<member name="M:DevExpress.XtraScheduler.PersistentObjectStorage`1.AppendBaseMappings(DevExpress.XtraScheduler.MappingCollection)">
<summary>
<para>Clears previous base mappings and appends specified ones.
</para>
</summary>
<param name="target">
A <see cref="T:DevExpress.XtraScheduler.MappingCollection"/> object, containing base mappings.
</param>
</member>
<member name="P:DevExpress.XtraScheduler.PersistentObjectStorage`1.AutoReload">
<summary>
<para>Gets or sets whether persistent object data is automatically fetched from the data source when it is modified.
</para>
</summary>
<value><b>true</b> if automatic data loading and reloading is enabled; otherwise, <b>false</b>.
</value>
</member>
<member name="M:DevExpress.XtraScheduler.PersistentObjectStorage`1.BeginUpdate">
<summary>
<para>Locks the PersistentObjectStorage object by disallowing visual updates until the <b>EndUpdate</b> or <b>CancelUpdate</b> method is called.
</para>
</summary>
</member>
<member name="M:DevExpress.XtraScheduler.PersistentObjectStorage`1.CancelUpdate">
<summary>
<para>Unlocks the PersistentObjectStorage object after it has been locked by the <b>BeginUpdate</b> method, without causing an immediate visual update.
</para>
</summary>
</member>
<member name="M:DevExpress.XtraScheduler.PersistentObjectStorage`1.Clear">
<summary>
<para>Removes all the items from the persistent object storage.
</para>
</summary>
</member>
<member name="P:DevExpress.XtraScheduler.PersistentObjectStorage`1.Count">
<summary>
<para>Gets the number of elements contained in a collection.
</para>
</summary>
<value>An integer representing the number of elements in a collection.
</value>
</member>
<member name="M:DevExpress.XtraScheduler.PersistentObjectStorage`1.CreateCustomFields(DevExpress.XtraScheduler.T)">
<summary>
<para>Creates the custom fields specific to this persistent object and adds them to the object's custom fields collection.
</para>
</summary>
<param name="obj">
A <see cref="T:DevExpress.XtraScheduler.PersistentObject"/> for which to create custom fields.
</param>
</member>
<member name="P:DevExpress.XtraScheduler.PersistentObjectStorage`1.DataManager">
<summary>
<para>For internal use only.
</para>
</summary>
<value>A <b>DevExpress.XtraScheduler.Data.DataManager</b> object.
</value>
</member>
<member name="P:DevExpress.XtraScheduler.PersistentObjectStorage`1.DataMember">
<summary>
<para>Gets or sets the data source member which supplies data to the storage object.
</para>
</summary>
<value>A <see cref="T:System.String"/> value representing the data source member.
</value>
</member>
<member name="P:DevExpress.XtraScheduler.PersistentObjectStorage`1.DataSource">
<summary>
<para>Gets or sets the object used as the data source to store persistent objects (appointments or resources).
</para>
</summary>
<value>An <see cref="T:System.Object"/> that represents the storage's data source.
</value>
</member>
<member name="M:DevExpress.XtraScheduler.PersistentObjectStorage`1.Dispose">
<summary>
<para>Disposes of the PersistentObjectStorage object.
</para>
</summary>
</member>
<member name="M:DevExpress.XtraScheduler.PersistentObjectStorage`1.EndUpdate">
<summary>
<para>Unlocks the PersistentObjectStorage object after a call to the <b>BeginUpdate</b> method and causes an immediate visual update.
</para>
</summary>
</member>
<member name="P:DevExpress.XtraScheduler.PersistentObjectStorage`1.Filter">
<summary>
<para>Gets or sets a string used to filter storage objects.
</para>
</summary>
<value>A string, representing a logical expression.
</value>
</member>
<member name="M:DevExpress.XtraScheduler.PersistentObjectStorage`1.GetColumnNames">
<summary>
<para>Gets the names of data columns associated with this PersistentObjectStorage object.
</para>
</summary>
<returns>A <see cref="T:System.Collections.Specialized.StringCollection"/> object.
</returns>
</member>
<member name="M:DevExpress.XtraScheduler.PersistentObjectStorage`1.GetObjectRow(DevExpress.XtraScheduler.T)">
<summary>
<para>Returns the data row object that contains information about the persistent object specified.
</para>
</summary>
<param name="obj">
A <see cref="T:DevExpress.XtraScheduler.PersistentObject"/> descendant which represents the persistent object (e.g., an <see cref="T:DevExpress.XtraScheduler.Appointment"/>).
</param>
<returns>A <see cref="T:System.Object"/> which is the data source object (or the data row) containing information about the persistent object.
</returns>
</member>
<member name="M:DevExpress.XtraScheduler.PersistentObjectStorage`1.GetObjectValue(DevExpress.XtraScheduler.T,System.String)">
<summary>
<para>Returns the value of the specified field in the data row that contains information about the specified persistent object.
</para>
</summary>
<param name="obj">
A <see cref="T:DevExpress.XtraScheduler.PersistentObject"/> descendant for which the content of the source object's data field is obtained.
</param>
<param name="columnName">
A <see cref="T:System.String"/> value which specifies the name of the data field in the source object.
</param>
<returns>A <see cref="T:System.Object"/> which is the data field value.
</returns>
</member>
<member name="P:DevExpress.XtraScheduler.PersistentObjectStorage`1.IsUpdateLocked">
<summary>
<para>Gets whether the storage has been locked for updating.
</para>
</summary>
<value><b>true</b> if the storage is locked; otherwise, <b>false</b>.
</value>
</member>
<member name="P:DevExpress.XtraScheduler.PersistentObjectStorage`1.Item(System.Int32)">
<summary>
<para>Provides indexed access to individual items contained within the storage.
</para>
</summary>
<param name="index">
A zero-based integer specifying the desired item's position within the collection. If it's negative or exceeds the last available index, an exception is raised.
</param>
<value>A PersistentObjectStorage instance, which represents the persistent object at the specified position.
</value>
</member>
<member name="P:DevExpress.XtraScheduler.PersistentObjectStorage`1.Items">
<summary>
<para>Gets the collection of persistent objects within the storage.
</para>
</summary>
<value>A <see cref="T:DevExpress.Utils.NotificationCollection`1"/> object that contains a collection of persistent objects.
</value>
</member>
<member name="M:DevExpress.XtraScheduler.PersistentObjectStorage`1.SetObjectValue(DevExpress.XtraScheduler.T,System.String,System.Object)">
<summary>
<para>Assigns the specified value to a field in the data row that contains information about the specified persistent object.
</para>
</summary>
<param name="obj">
A <see cref="T:DevExpress.XtraScheduler.PersistentObject"/> descendant which is the persistent object (e.g., the <see cref="T:DevExpress.XtraScheduler.Appointment"/>).
</param>
<param name="columnName">
A <see cref="T:System.String"/> value which specifies the name of the data field.
</param>
<param name="val">
A <see cref="T:System.Object"/> which specifies the data field's value.
</param>
</member>
<member name="P:DevExpress.XtraScheduler.PersistentObjectStorage`1.UnboundMode">
<summary>
<para>Gets a value indicating if the storage is bound to data.
</para>
</summary>
<value><b>true</b> if the storage isn't bound to data; otherwise, <b>false</b>.
</value>
</member>
<member name="T:DevExpress.XtraScheduler.UpdateSelectionDurationAction">
<summary>
<para>Specifies how the selection extends when the time scale is changed to a larger one.
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.UpdateSelectionDurationAction.Adjust">
<summary>
<para><para>The selection is adjusted to represent the originally selected interval, so the selection may span acreoos several cells. </para>
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.UpdateSelectionDurationAction.Reset">
<summary>
<para><para>The selection is reset, so it occupies only the beginning of the previously selected interval.
</para>
</para>
</summary>
</member>
<member name="T:DevExpress.XtraScheduler.OptionsSelectionBehavior">
<summary>
<para>Provides options which define how the selection behaves when the time scale is changed for the <b>TimelineView</b>.
</para>
</summary>
</member>
<member name="M:DevExpress.XtraScheduler.OptionsSelectionBehavior.#ctor">
<summary>
<para>Initializes a new instance of the OptionsSelectionBehavior class with default settings.
</para>
</summary>
</member>
<member name="M:DevExpress.XtraScheduler.OptionsSelectionBehavior.Assign(DevExpress.Utils.Controls.BaseOptions)">
<summary>
<para>Copies all settings from the options object passed as the parameter to the current object.
</para>
</summary>
<param name="options">
An OptionsSelectionBehavior object (which is the <see cref="T:DevExpress.Utils.Controls.BaseOptions"/> descendant) whose settings are assigned to the current object.
</param>
</member>
<member name="P:DevExpress.XtraScheduler.OptionsSelectionBehavior.KeepSelectedAppointments">
<summary>
<para>Gets or sets whether selected appointments in the <b>TimelineView</b> remain selected after scrolling the time line so that those appointments are no longer visible.
</para>
</summary>
<value><b>true</b>, to keep appointment selected when they are scrolled out of view; otherwise, <b>false</b>.
</value>
</member>
<member name="P:DevExpress.XtraScheduler.OptionsSelectionBehavior.UpdateSelectionDurationAction">
<summary>
<para>Specifies how the selection conforms to the time scale change in the <b>Timeline</b> view.
</para>
</summary>
<value>An <see cref="T:DevExpress.XtraScheduler.UpdateSelectionDurationAction"/> enumeration member, specifying the action performed when the time scale changes.
</value>
</member>
<member name="T:DevExpress.XtraScheduler.TimeZoneHelper">
<summary>
<para>Provides methods used to convert DateTime values and intervals from the time zone of the current host to the client time zone of the Scheduler and vice versa.
</para>
</summary>
</member>
<member name="M:DevExpress.XtraScheduler.TimeZoneHelper.#ctor(System.String)">
<summary>
<para>Initializes a new instance of the TimeZoneHelper class with the specified time zone.
</para>
</summary>
<param name="timeZoneId">
A string that is the time zone identifier.
</param>
</member>
<member name="P:DevExpress.XtraScheduler.TimeZoneHelper.ClientTimeZone">
<summary>
<para>Gets the client time zone.
</para>
</summary>
<value>A <see cref="T:DevExpress.XtraScheduler.SchedulerTimeZone"/> enumeration member, representing a time zone.
</value>
</member>
<member name="M:DevExpress.XtraScheduler.TimeZoneHelper.ConvertDate(System.DateTime,DevExpress.XtraScheduler.SchedulerTimeZone,DevExpress.XtraScheduler.SchedulerTimeZone)">
<summary>
<para>Converts date/time values form one time zone to another.
</para>
</summary>
<param name="date">
A <see cref="T:System.DateTime"/> value, representing a date/time in the source time zone.
</param>
<param name="sourceTimeZone">
A <see cref="T:DevExpress.XtraScheduler.SchedulerTimeZone"/> object representing the source time zone in the Scheduler.
</param>
<param name="targetTimeZone">
A <see cref="T:DevExpress.XtraScheduler.SchedulerTimeZone"/> object representing the target time zone in the Scheduler.
</param>
<returns>A <see cref="T:System.DateTime"/> value, representing a date/time in the target time zone.
</returns>
</member>
<member name="P:DevExpress.XtraScheduler.TimeZoneHelper.CurrentTimeZone">
<summary>
<para>Gets the time zone of the current host.
</para>
</summary>
<value>A <see cref="T:DevExpress.XtraScheduler.SchedulerTimeZone"/> enumeration member, representing a time zone.
</value>
</member>
<member name="M:DevExpress.XtraScheduler.TimeZoneHelper.FromClientTime(System.DateTime)">
<summary>
<para>Converts a specified time value from the client time zone to the time zone of the current host.
</para>
</summary>
<param name="date">
A <see cref="T:System.DateTime"/> value, representing a time in the client time zone.
</param>
<returns>A <see cref="T:System.DateTime"/> value, representing a time in the current time zone.
</returns>
</member>
<member name="M:DevExpress.XtraScheduler.TimeZoneHelper.FromClientTime(DevExpress.XtraScheduler.TimeInterval)">
<summary>
<para>Converts a specified time interval from the client time zone to the time zone of the current host.
</para>
</summary>
<param name="interval">
A <see cref="T:DevExpress.XtraScheduler.TimeInterval"/> value, representing a time interval in the client time zone.
</param>
<returns>A <see cref="T:DevExpress.XtraScheduler.TimeInterval"/> value, representing a time interval in the current time zone.
</returns>
</member>
<member name="M:DevExpress.XtraScheduler.TimeZoneHelper.ToClientTime(DevExpress.XtraScheduler.TimeInterval)">
<summary>
<para>Converts a specified time interval from the current time zone to the client time zone of the Scheduler.
</para>
</summary>
<param name="interval">
A <see cref="T:DevExpress.XtraScheduler.TimeInterval"/> value, representing a time interval in the current time zone.
</param>
<returns>A <see cref="T:DevExpress.XtraScheduler.TimeInterval"/> value, representing a time interval in the Scheduler time zone.
</returns>
</member>
<member name="M:DevExpress.XtraScheduler.TimeZoneHelper.ToClientTime(System.DateTime)">
<summary>
<para>Converts a specified time value from the current time zone to the Scheduler client time zone.
</para>
</summary>
<param name="date">
A <see cref="T:System.DateTime"/> value, representing a time in the current time zone.
</param>
<returns>A <see cref="T:System.DateTime"/> value, representing a time in the Scheduler time zone.
</returns>
</member>
<member name="T:DevExpress.XtraScheduler.Services.ISchedulerStateService">
<summary>
<para>Provides properties indicating the Scheduler state.
</para>
</summary>
</member>
<member name="P:DevExpress.XtraScheduler.Services.ISchedulerStateService.AreAppointmentsDragged">
<summary>
<para>Indicates whether the drag operation is performed with appointments in the Scheduler.
</para>
</summary>
<value><b>true</b> if one or several appointments are dragged; otherwise, <b>false</b>.
</value>
</member>
<member name="P:DevExpress.XtraScheduler.Services.ISchedulerStateService.IsAnimationActive">
<summary>
<para>Indicates whether the animation effect is applied.
</para>
</summary>
<value><b>true</b> if the animation effect is applied; otherwise, <b>false</b>.
</value>
</member>
<member name="P:DevExpress.XtraScheduler.Services.ISchedulerStateService.IsAppointmentResized">
<summary>
<para>Indicates whether an appointment is resized.
</para>
</summary>
<value><b>true</b> if an appointment is resized; otherwise, <b>false</b>.
</value>
</member>
<member name="P:DevExpress.XtraScheduler.Services.ISchedulerStateService.IsDataRefreshAllowed">
<summary>
<para>Indicates whether the Scheduler data can be safely reloaded.
</para>
</summary>
<value><b>true</b> if data refresh is allowed; otherwise, <b>false</b>.
</value>
</member>
<member name="P:DevExpress.XtraScheduler.Services.ISchedulerStateService.IsInplaceEditorOpened">
<summary>
<para>Indicates whether an inplace editor is invoked.
</para>
</summary>
<value><b>true</b> if the inplace editor window is open; otherwise, <b>false</b>.
</value>
</member>
<member name="P:DevExpress.XtraScheduler.Services.ISchedulerStateService.IsModalFormOpened">
<summary>
<para>Indicates whether a modal form (appointment editing form or recurrence editing form) is invoked.
</para>
</summary>
<value><b>true</b> if a modal form is opened; otherwise, <b>false</b>.
</value>
</member>
<member name="P:DevExpress.XtraScheduler.Services.ISchedulerStateService.IsPopupMenuOpened">
<summary>
<para>Indicates whether a popup (context) menu is invoked.
</para>
</summary>
<value><b>true</b> if a popup menu is opened; otherwise, <b>false</b>.
</value>
</member>
<member name="T:DevExpress.XtraScheduler.Services.Implementation.SchedulerStateService">
<summary>
<para>Provides a wrapper for using the <see cref="T:DevExpress.XtraScheduler.Services.ISchedulerStateService"/>.
</para>
</summary>
</member>
<member name="M:DevExpress.XtraScheduler.Services.Implementation.SchedulerStateService.#ctor">
<summary>
<para>Initializes a new instance of the SchedulerStateService class with default settings.
</para>
</summary>
</member>
<member name="T:DevExpress.XtraScheduler.Services.IDateTimeNavigationService">
<summary>
<para>Provides properties and methods for time cell navigation.
</para>
</summary>
</member>
<member name="M:DevExpress.XtraScheduler.Services.IDateTimeNavigationService.GoToDate(System.DateTime)">
<summary>
<para>Navigates to the specified date.
</para>
</summary>
<param name="date">
A <see cref="T:System.DateTime"/> value, which specifies the destination date.
</param>
</member>
<member name="M:DevExpress.XtraScheduler.Services.IDateTimeNavigationService.GoToDate(System.DateTime,DevExpress.XtraScheduler.SchedulerViewType)">
<summary>
<para>Displays the specified date using the specified view.
</para>
</summary>
<param name="date">
A System.DateTime value, representing the destination date.
</param>
<param name="viewType">
A <see cref="T:DevExpress.XtraScheduler.SchedulerViewType"/> enumeration, specifying the destination Scheduler view .
</param>
</member>
<member name="M:DevExpress.XtraScheduler.Services.IDateTimeNavigationService.GoToToday">
<summary>
<para>Navigates to the current date.
</para>
</summary>
</member>
<member name="M:DevExpress.XtraScheduler.Services.IDateTimeNavigationService.NavigateBackward">
<summary>
<para>Moves one visible time frame backward.
</para>
</summary>
</member>
<member name="M:DevExpress.XtraScheduler.Services.IDateTimeNavigationService.NavigateForward">
<summary>
<para>Advances one visible time frame forward.
</para>
</summary>
</member>
<member name="T:DevExpress.XtraScheduler.Services.IResourceNavigationService">
<summary>
<para>Provides properties and methods for the resource list navigation.
</para>
</summary>
</member>
<member name="M:DevExpress.XtraScheduler.Services.IResourceNavigationService.CanGoToResource(DevExpress.XtraScheduler.Resource)">
<summary>
<para>Indicates whether the Scheduler can navigate to the specified resource.
</para>
</summary>
<param name="resource">
A <see cref="T:DevExpress.XtraScheduler.Resource"/> object, representing a destination resource.
</param>
<returns><b>true</b> if navigation is allowed; otherwise, <b>false</b>.
</returns>
</member>
<member name="M:DevExpress.XtraScheduler.Services.IResourceNavigationService.CanGoToResourceById(System.Object)">
<summary>
<para>Indicates whether the Scheduler can navigate to the specified resource.
</para>
</summary>
<param name="resourceId">
An object, representing the identifier of the destination resource.
</param>
<returns><b>true</b> if navigation is allowed; otherwise, <b>false</b>.
</returns>
</member>
<member name="M:DevExpress.XtraScheduler.Services.IResourceNavigationService.CanNavigateBackward">
<summary>
<para>Indicates whether there is a resource in the list before the current position to which navigation is alllowed.
</para>
</summary>
<returns><b>true</b> if a backward move in the resource list is allowed; otherwise, <b>false</b>.
</returns>
</member>
<member name="M:DevExpress.XtraScheduler.Services.IResourceNavigationService.CanNavigateFirst">
<summary>
<para>Indicates whether navigation to the first resource in a list is allowed.
</para>
</summary>
<returns><b>true</b> if you are allowed to move to the first resource in a list; otherwise, <b>false</b>.
</returns>
</member>
<member name="M:DevExpress.XtraScheduler.Services.IResourceNavigationService.CanNavigateForward">
<summary>
<para>Indicates whether you can advance to the next resource in a list.
</para>
</summary>
<returns><b>true</b> if navigation to the next resource in a list is allowed; otherwise, <b>false</b>.
</returns>
</member>
<member name="M:DevExpress.XtraScheduler.Services.IResourceNavigationService.CanNavigateLast">
<summary>
<para>Indicates whether navigation to the last resource in a list is allowed.
</para>
</summary>
<returns><b>true</b> if you are allowed to move to the last resource in a list; otherwise, <b>false</b>.
</returns>
</member>
<member name="M:DevExpress.XtraScheduler.Services.IResourceNavigationService.CanNavigatePageBackward">
<summary>
<para>Indicates whether the Scheduler can move back one visible resource frame.
</para>
</summary>
<returns><b>true</b>if the Scheduler can navigate one resource page backward; otherwise, <b>false</b>.
</returns>
</member>
<member name="M:DevExpress.XtraScheduler.Services.IResourceNavigationService.CanNavigatePageForward">
<summary>
<para>Indicates whether the Scheduler can advance one visible resource frame.
</para>
</summary>
<returns><b>true</b>if the Scheduler can navigate one resource page forward; otherwise, <b>false</b>.
</returns>
</member>
<member name="P:DevExpress.XtraScheduler.Services.IResourceNavigationService.FirstVisibleResourceIndex">
<summary>
<para>Gets or sets the index of the first visible resource in a resource frame.
</para>
</summary>
<value>An integer, specifying the resource index.
</value>
</member>
<member name="M:DevExpress.XtraScheduler.Services.IResourceNavigationService.GoToResource(DevExpress.XtraScheduler.Resource)">
<summary>
<para>Navigates to the specified resource.
</para>
</summary>
<param name="resource">
A <see cref="T:DevExpress.XtraScheduler.Resource"/> specifying the destination resource.
</param>
</member>
<member name="M:DevExpress.XtraScheduler.Services.IResourceNavigationService.GoToResourceById(System.Object)">
<summary>
<para>Navigates to the specified resource.
</para>
</summary>
<param name="resourceId">
An object specifying the identifier of the destination resource.
</param>
</member>
<member name="M:DevExpress.XtraScheduler.Services.IResourceNavigationService.NavigateBackward">
<summary>
<para>Moves the Scheduler to the previous resource in a list.
</para>
</summary>
</member>
<member name="M:DevExpress.XtraScheduler.Services.IResourceNavigationService.NavigateFirst">
<summary>
<para>Navigates to the first resource in a list.
</para>
</summary>
</member>
<member name="M:DevExpress.XtraScheduler.Services.IResourceNavigationService.NavigateForward">
<summary>
<para>Moves the Scheduler to the next resource in a list.
</para>
</summary>
</member>
<member name="M:DevExpress.XtraScheduler.Services.IResourceNavigationService.NavigateLast">
<summary>
<para>Navigates to the last resource in a list.
</para>
</summary>
</member>
<member name="M:DevExpress.XtraScheduler.Services.IResourceNavigationService.NavigatePageBackward">
<summary>
<para>Navigates one visible resource page backward.
</para>
</summary>
</member>
<member name="M:DevExpress.XtraScheduler.Services.IResourceNavigationService.NavigatePageForward">
<summary>
<para>Navigates one visible resource page forward.
</para>
</summary>
</member>
<member name="P:DevExpress.XtraScheduler.Services.IResourceNavigationService.ResourcePerPage">
<summary>
<para>Gets or sets the number of displayed resources in group mode.
</para>
</summary>
<value>An integer, specifying the displayed resources count.
</value>
</member>
<member name="T:DevExpress.XtraScheduler.iCalendar.iCalendarStructureCreatedEventHandler">
<summary>
<para>Represents a method that will handle the <see cref="E:DevExpress.XtraScheduler.iCalendar.iCalendarImporter.CalendarStructureCreated"/> and <see cref="E:DevExpress.XtraScheduler.iCalendar.iCalendarExporter.CalendarStructureCreated"/> events.
</para>
</summary>
</member>
<member name="M:DevExpress.XtraScheduler.iCalendar.iCalendarStructureCreatedEventHandler.Invoke(System.Object,DevExpress.XtraScheduler.iCalendar.iCalendarStructureCreatedEventArgs)">
<summary>
<para>Represents a method that will handle the <see cref="E:DevExpress.XtraScheduler.iCalendar.iCalendarImporter.CalendarStructureCreated"/> and <see cref="E:DevExpress.XtraScheduler.iCalendar.iCalendarExporter.CalendarStructureCreated"/> events.
</para>
</summary>
<param name="sender">
The event source. This parameter identifies the <see cref="T:DevExpress.XtraScheduler.iCalendar.iCalendarImporter"/> or <see cref="T:DevExpress.XtraScheduler.iCalendar.iCalendarExporter"/> which raised the event.
</param>
<param name="e">
A <see cref="T:DevExpress.XtraScheduler.iCalendar.iCalendarStructureCreatedEventArgs"/> object containing event data.
</param>
</member>
<member name="T:DevExpress.XtraScheduler.iCalendar.iCalendarEventImportException">
<summary>
<para>Represents errors that occur during iCalendar data import.
</para>
</summary>
</member>
<member name="M:DevExpress.XtraScheduler.iCalendar.iCalendarEventImportException.#ctor(DevExpress.XtraScheduler.iCalendar.Components.VEventCollection)">
<summary>
<para>Initializes a new instance of the iCalendarEventImportException class with the specified settings.
</para>
</summary>
<param name="events">
A <see cref="T:DevExpress.XtraScheduler.iCalendar.Components.VEventCollection"/> object representing a collection of event calendar components defined by <b>iCalendar</b> standard.
</param>
</member>
<member name="P:DevExpress.XtraScheduler.iCalendar.iCalendarEventImportException.Events">
<summary>
<para>Provides access to an event collection containing events which raised an exception.
</para>
</summary>
<value>A <see cref="T:DevExpress.XtraScheduler.iCalendar.Components.VEventCollection"/> object representing a collection of calendar event components.
</value>
</member>
<member name="T:DevExpress.XtraScheduler.iCalendar.iCalendarAppointmentExportingEventArgs">
<summary>
<para>Provides data for the <see cref="E:DevExpress.XtraScheduler.Exchange.AppointmentExporter.AppointmentExporting"/> event of the <see cref="T:DevExpress.XtraScheduler.iCalendar.iCalendarExporter"/>.
</para>
</summary>
</member>
<member name="M:DevExpress.XtraScheduler.iCalendar.iCalendarAppointmentExportingEventArgs.#ctor(DevExpress.XtraScheduler.Appointment,DevExpress.XtraScheduler.iCalendar.Components.VEvent)">
<summary>
<para>Initializes a new instance of the iCalendarAppointmentExportingEventArgs class with the specified settings.
</para>
</summary>
<param name="apt">
An <see cref="T:DevExpress.XtraScheduler.Appointment"/> object representing an event in XtraScheduler.
</param>
<param name="ev">
A <see cref="T:DevExpress.XtraScheduler.iCalendar.Components.VEvent"/> object representing an event calendar component defined by the <b>iCalendar</b> standard.
</param>
</member>
<member name="P:DevExpress.XtraScheduler.iCalendar.iCalendarAppointmentExportingEventArgs.VEvent">
<summary>
<para>Provides access to the event calendar component conforming to the iCalendar standard.
</para>
</summary>
<value>A <see cref="T:DevExpress.XtraScheduler.iCalendar.Components.VEvent"/> class instance representing an event calendar component.
</value>
</member>
<member name="T:DevExpress.XtraScheduler.iCalendar.iCalendarAppointmentExportedEventArgs">
<summary>
<para>Provides data for the <see cref="E:DevExpress.XtraScheduler.Exchange.AppointmentExporter.AppointmentExported"/> event of the <see cref="T:DevExpress.XtraScheduler.iCalendar.iCalendarExporter"/>.
</para>
</summary>
</member>
<member name="M:DevExpress.XtraScheduler.iCalendar.iCalendarAppointmentExportedEventArgs.#ctor(DevExpress.XtraScheduler.Appointment,DevExpress.XtraScheduler.iCalendar.Components.VEvent)">
<summary>
<para>Initializes a new instance of the iCalendarAppointmentExportedEventArgs class with the specified settings.
</para>
</summary>
<param name="apt">
An <see cref="T:DevExpress.XtraScheduler.Appointment"/> object representing an event in XtraScheduler.
</param>
<param name="ev">
A <see cref="T:DevExpress.XtraScheduler.iCalendar.Components.VEvent"/> object representing an event calendar component defined by the <b>iCalendar</b> standard.
</param>
</member>
<member name="P:DevExpress.XtraScheduler.iCalendar.iCalendarAppointmentExportedEventArgs.VEvent">
<summary>
<para>Provides access to the event calendar component conforming to the iCalendar standard.
</para>
</summary>
<value>A <see cref="T:DevExpress.XtraScheduler.iCalendar.Components.VEvent"/> class instance representing an event calendar component.
</value>
</member>
<member name="T:DevExpress.XtraScheduler.iCalendar.iCalendarAppointmentImportedEventArgs">
<summary>
<para>Provides data for the <see cref="E:DevExpress.XtraScheduler.Exchange.AppointmentImporter.AppointmentImported"/> event of the <see cref="T:DevExpress.XtraScheduler.iCalendar.iCalendarImporter"/>.
</para>
</summary>
</member>
<member name="M:DevExpress.XtraScheduler.iCalendar.iCalendarAppointmentImportedEventArgs.#ctor(DevExpress.XtraScheduler.Appointment,DevExpress.XtraScheduler.iCalendar.Components.VEvent)">
<summary>
<para>Initializes a new instance of the iCalendarAppointmentImportedEventArgs class with the specified settings.
</para>
</summary>
<param name="apt">
An <see cref="T:DevExpress.XtraScheduler.Appointment"/> object representing an event in XtraScheduler.
</param>
<param name="ev">
A <see cref="T:DevExpress.XtraScheduler.iCalendar.Components.VEvent"/> object representing an event calendar component defined by the <b>iCalendar</b> standard.
</param>
</member>
<member name="P:DevExpress.XtraScheduler.iCalendar.iCalendarAppointmentImportedEventArgs.VEvent">
<summary>
<para>Provides access to the event calendar component conforming to the iCalendar standard.
</para>
</summary>
<value>A <see cref="T:DevExpress.XtraScheduler.iCalendar.Components.VEvent"/> class instance representing an event calendar component.
</value>
</member>
<member name="T:DevExpress.XtraScheduler.iCalendar.iCalendarAppointmentImportingEventArgs">
<summary>
<para>Provides data for the <see cref="E:DevExpress.XtraScheduler.Exchange.AppointmentImporter.AppointmentImporting"/> event of the <see cref="T:DevExpress.XtraScheduler.iCalendar.iCalendarImporter"/>.
</para>
</summary>
</member>
<member name="M:DevExpress.XtraScheduler.iCalendar.iCalendarAppointmentImportingEventArgs.#ctor(DevExpress.XtraScheduler.Appointment,DevExpress.XtraScheduler.iCalendar.Components.VEvent)">
<summary>
<para>Initializes a new instance of the iCalendarAppointmentImportingEventArgs class with the specified settings.
</para>
</summary>
<param name="apt">
An <see cref="T:DevExpress.XtraScheduler.Appointment"/> object representing an event in XtraScheduler.
</param>
<param name="ev">
A <see cref="T:DevExpress.XtraScheduler.iCalendar.Components.VEvent"/> object representing an event calendar component defined by the <b>iCalendar</b> standard.
</param>
</member>
<member name="P:DevExpress.XtraScheduler.iCalendar.iCalendarAppointmentImportingEventArgs.VEvent">
<summary>
<para>Provides access to the event calendar component conforming to the iCalendar standard.
</para>
</summary>
<value>A <see cref="T:DevExpress.XtraScheduler.iCalendar.Components.VEvent"/> class instance representing an event calendar component.
</value>
</member>
<member name="T:DevExpress.XtraScheduler.iCalendar.iCalendarExporter">
<summary>
<para>Represents an object that transforms Scheduler appointments into the event calendar components in iCalendar format.
</para>
</summary>
</member>
<member name="M:DevExpress.XtraScheduler.iCalendar.iCalendarExporter.#ctor(DevExpress.XtraScheduler.SchedulerStorageBase)">
<summary>
<para>Initializes a new instance of the iCalendarExporter class with the specified storage.
</para>
</summary>
<param name="storage">
A <see cref="T:DevExpress.XtraScheduler.SchedulerStorageBase"/> object representing a storage for appointments being exported.
</param>
</member>
<member name="M:DevExpress.XtraScheduler.iCalendar.iCalendarExporter.#ctor(DevExpress.XtraScheduler.SchedulerStorageBase,DevExpress.XtraScheduler.AppointmentBaseCollection)">
<summary>
<para>Initializes a new instance of the iCalendarExporter class with the specified parameters.
</para>
</summary>
<param name="storage">
A <see cref="T:DevExpress.XtraScheduler.SchedulerStorageBase"/> object representing the appointments storage used for lookups.
</param>
<param name="appointments">
An <see cref="T:DevExpress.XtraScheduler.AppointmentBaseCollection"/> object, representing a collection of appointments intended for export.
</param>
</member>
<member name="P:DevExpress.XtraScheduler.iCalendar.iCalendarExporter.Appointments">
<summary>
<para>Gets or sets appointments for export.
</para>
</summary>
<value>An <see cref="T:DevExpress.XtraScheduler.AppointmentBaseCollection"/> object representing a collection of appointments intended for export.
</value>
</member>
<member name="E:DevExpress.XtraScheduler.iCalendar.iCalendarExporter.CalendarStructureCreated">
<summary>
<para>Fires when the calendar object conforming to the iCalendar specification is created.
</para>
</summary>
</member>
<member name="P:DevExpress.XtraScheduler.iCalendar.iCalendarExporter.CustomPropertyIndentifier">
<summary>
<para>Gets or sets a short prefix text used to construct the names for properties not included in the iCalendar standard.
</para>
</summary>
<value>A string, representing a token for non-standard iCalendar properties.
</value>
</member>
<member name="P:DevExpress.XtraScheduler.iCalendar.iCalendarExporter.ProductIdentifier">
<summary>
<para>Gets or sets the identifier for the product that created the iCalendar object.
</para>
</summary>
<value>A string usually containing company name, product name and language-specific information separated by slashes.
</value>
</member>
<member name="T:DevExpress.XtraScheduler.iCalendar.iCalendarImporter">
<summary>
<para>Represents an object that transforms the event calendar components in iCalendar format into Scheduler appointments.
</para>
</summary>
</member>
<member name="M:DevExpress.XtraScheduler.iCalendar.iCalendarImporter.#ctor(DevExpress.XtraScheduler.SchedulerStorageBase)">
<summary>
<para>Initializes a new instance of the iCalendarImporter class with the specified storage.
</para>
</summary>
<param name="storage">
A <see cref="T:DevExpress.XtraScheduler.SchedulerStorageBase"/> object representing a storage for imported events.
</param>
</member>
<member name="E:DevExpress.XtraScheduler.iCalendar.iCalendarImporter.CalendarStructureCreated">
<summary>
<para>Fires when the calendar object conforming to the iCalendar specification is created.
</para>
</summary>
</member>
<member name="P:DevExpress.XtraScheduler.iCalendar.iCalendarImporter.CustomPropertyIndentifier">
<summary>
<para>Gets or sets a short prefix text used to construct the names for properties not included in the iCalendar standard.
</para>
</summary>
<value>A string, representing a token for non-standard iCalendar properties.
</value>
</member>
<member name="M:DevExpress.XtraScheduler.iCalendar.iCalendarImporter.ProcessCalendars(DevExpress.XtraScheduler.iCalendar.Components.iCalendarContainer)">
<summary>
<para>Handles all calendars through a set of procedures to create corresponding appointments in the storage.
</para>
</summary>
<param name="calendars">
An object that holds the calendars.
</param>
</member>
<member name="T:DevExpress.XtraScheduler.iCalendar.iCalendarErrorType">
<summary>
<para>Lists error types specific for iCalendar data exchange.
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.iCalendar.iCalendarErrorType.NotValidFile">
<summary>
<para>Indicates that the file supplied is not a valid iCalendar file.
</para>
</summary>
</member>
<member name="T:DevExpress.XtraScheduler.iCalendar.iCalendarStructureCreatedEventArgs">
<summary>
<para>Provides data for the <see cref="E:DevExpress.XtraScheduler.iCalendar.iCalendarImporter.CalendarStructureCreated"/> and <see cref="E:DevExpress.XtraScheduler.iCalendar.iCalendarExporter.CalendarStructureCreated"/> events.
</para>
</summary>
</member>
<member name="M:DevExpress.XtraScheduler.iCalendar.iCalendarStructureCreatedEventArgs.#ctor(DevExpress.XtraScheduler.iCalendar.Components.iCalendarContainer)">
<summary>
<para>Initializes a new instance of the iCalendarStructureCreatedEventArgs class with the specified settings.
</para>
</summary>
<param name="calendars">
An object containing iCalendar objects.
</param>
</member>
<member name="P:DevExpress.XtraScheduler.iCalendar.iCalendarStructureCreatedEventArgs.Calendars">
<summary>
<para>Provides access to the calendar structures conforming to the iCalendar specification.
</para>
</summary>
<value>An object that holds the calendars.
</value>
</member>
<member name="T:DevExpress.XtraScheduler.ResizedSide">
<summary>
<para>Lists appointment boundaries which could be moved when the appointment is being resized.
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.ResizedSide.AtEndTime">
<summary>
<para>The appointment's end time boundary is moved.
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.ResizedSide.AtStartTime">
<summary>
<para>The appointment's start time boundary is moved.
</para>
</summary>
</member>
<member name="T:DevExpress.XtraScheduler.RecurrentAppointmentAction">
<summary>
<para>Lists actions which could be performed on a recurrent appointment.
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.RecurrentAppointmentAction.Ask">
<summary>
<para>The user is prompted to carry out an operation on selected occurrences only, or the entire series.
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.RecurrentAppointmentAction.Cancel">
<summary>
<para>Cancels the action.
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.RecurrentAppointmentAction.Occurrence">
<summary>
<para>Performs an operation on a selected occurrence only.
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.RecurrentAppointmentAction.Series">
<summary>
<para>Performs an operation on the entire series.
</para>
</summary>
</member>
<member name="T:DevExpress.XtraScheduler.AppointmentSnapToCellsMode">
<summary>
<para>Lists the modes of appointment fit in the time cell(s) by stretching it to the cell's limits.
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.AppointmentSnapToCellsMode.Always">
<summary>
<para><para>An appointment is always stretched to cell borders so that it occupies the entire cell or several cells.</para>
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.AppointmentSnapToCellsMode.Auto">
<summary>
<para><para>Appointment is stretched to cell border only if the distance from the cell border to the edge of an appointment is less than half of the cell width.</para>
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.AppointmentSnapToCellsMode.Disabled">
<summary>
<para><para>The appointment visible width is proportional to its duration. The minimal value of a dimension that represents the appointment duration is one pixel. The following picture illustrates the difference between the <b>Disabled</b> and <b>Never</b> modes for an appointment with a very small duration. The <b>Disabled</b> mode displays appointment as a line with a height of one pixel; however in <b>Never</b> mode, it looks like a small appointment with a height of several pixels, rather than a line.</para>
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.AppointmentSnapToCellsMode.Never">
<summary>
<para><para>The appointment visible width is proportional to its duration. There is a minimal visible width (about 5 pixels). If an appointment's duration is quite small, it will never be narrower than the minimal width.</para>
</para>
</summary>
</member>
<member name="T:DevExpress.XtraScheduler.AppointmentResizeEventHandler">
<summary>
<para>Represents a method that will handle the <see cref="E:DevExpress.XtraScheduler.SchedulerControl.AppointmentResizing"/> and <see cref="E:DevExpress.XtraScheduler.SchedulerControl.AppointmentResized"/> events.
</para>
</summary>
</member>
<member name="M:DevExpress.XtraScheduler.AppointmentResizeEventHandler.Invoke(System.Object,DevExpress.XtraScheduler.AppointmentResizeEventArgs)">
<summary>
<para>Represents a method that will handle events associated with appointment resizing.
</para>
</summary>
<param name="sender">
The event source. This parameter identifies the <see cref="T:DevExpress.XtraScheduler.SchedulerControl"/> which raised the event.
</param>
<param name="e">
An <see cref="T:DevExpress.XtraScheduler.AppointmentResizeEventArgs"/> object which contains event data.
</param>
</member>
<member name="T:DevExpress.XtraScheduler.AppointmentResizeEventArgs">
<summary>
<para>Provides data for the <see cref="E:DevExpress.XtraScheduler.SchedulerControl.AppointmentResizing"/> and <see cref="E:DevExpress.XtraScheduler.SchedulerControl.AppointmentResized"/> events.
</para>
</summary>
</member>
<member name="M:DevExpress.XtraScheduler.AppointmentResizeEventArgs.#ctor(DevExpress.XtraScheduler.Appointment,DevExpress.XtraScheduler.Appointment,DevExpress.XtraScheduler.TimeInterval,DevExpress.XtraScheduler.Resource,DevExpress.XtraScheduler.ResizedSide)">
<summary>
<para>Initializes a new instance of the AppointmentResizeEventArgs class with specified settings.
</para>
</summary>
<param name="sourceAppointment">
An <see cref="T:DevExpress.XtraScheduler.Appointment"/> object which represents the event's source appointment. This value is assigned to the <see cref="P:DevExpress.XtraScheduler.AppointmentResizeEventArgs.SourceAppointment"/> property.
</param>
<param name="editedAppointment">
An <see cref="T:DevExpress.XtraScheduler.Appointment"/> object which represents the appointment modified within the event. This value is assigned to the <see cref="P:DevExpress.XtraScheduler.AppointmentResizeEventArgs.EditedAppointment"/> property.
</param>
<param name="hitInterval">
A <see cref="T:DevExpress.XtraScheduler.TimeInterval"/> value which represents the time interval of the time cell being hit when resizing. This value is assigned to the <see cref="P:DevExpress.XtraScheduler.AppointmentResizeEventArgs.HitInterval"/> property.
</param>
<param name="hitResource">
A <see cref="T:DevExpress.XtraScheduler.Resource"/> object, representing a resource assigned to cells to which an appointment's side is moved.
</param>
<param name="resizedSide">
A <see cref="T:DevExpress.XtraScheduler.ResizedSide"/> enumeration value, specifying the side being moved when the appointment is resized.
</param>
</member>
<member name="P:DevExpress.XtraScheduler.AppointmentResizeEventArgs.Allow">
<summary>
<para>Specifies whether the appointment can be resized.
</para>
</summary>
<value><b>true</b> if appointment resizing is allowed; otherwise, <b>false</b>.
</value>
</member>
<member name="P:DevExpress.XtraScheduler.AppointmentResizeEventArgs.EditedAppointment">
<summary>
<para>Gets the appointment being edited in the resize event.
</para>
</summary>
<value>An <see cref="T:DevExpress.XtraScheduler.Appointment"/> object.
</value>
</member>
<member name="P:DevExpress.XtraScheduler.AppointmentResizeEventArgs.Handled">
<summary>
<para>Gets or sets whether the resize operation is handled, and therefore no default processing is required.
</para>
</summary>
<value><b>true</b> if no default processing is required; otherwise, <b>false</b>.
</value>
</member>
<member name="P:DevExpress.XtraScheduler.AppointmentResizeEventArgs.HitInterval">
<summary>
<para>Gets the time interval represented by the time cell to which the appointment's side is moved.
</para>
</summary>
<value>A <see cref="T:DevExpress.XtraScheduler.TimeInterval"/> object.
</value>
</member>
<member name="P:DevExpress.XtraScheduler.AppointmentResizeEventArgs.HitResource">
<summary>
<para>Gets the resource assigned to cells to which an appointment's side is moved.
</para>
</summary>
<value>A <see cref="T:DevExpress.XtraScheduler.Resource"/> object.
</value>
</member>
<member name="P:DevExpress.XtraScheduler.AppointmentResizeEventArgs.ResizedSide">
<summary>
<para>Indicates which appointment side is being moved when the appointment is resized.
</para>
</summary>
<value>A <see cref="T:DevExpress.XtraScheduler.ResizedSide"/> enumeration value, specifying the appointment's side.
</value>
</member>
<member name="P:DevExpress.XtraScheduler.AppointmentResizeEventArgs.SourceAppointment">
<summary>
<para>Gets the source appointment in the resize event.
</para>
</summary>
<value>An <see cref="T:DevExpress.XtraScheduler.Appointment"/> object.
</value>
</member>
<member name="T:DevExpress.XtraScheduler.ResourceCustomFieldMapping">
<summary>
<para>Represents a mapping of a custom property of a resource to an appropriate data field.
</para>
</summary>
</member>
<member name="M:DevExpress.XtraScheduler.ResourceCustomFieldMapping.#ctor">
<summary>
<para>Initializes a new instance of the ResourceCustomFieldMapping class with default settings.
</para>
</summary>
</member>
<member name="M:DevExpress.XtraScheduler.ResourceCustomFieldMapping.#ctor(System.String,System.String)">
<summary>
<para>Initializes a new instance of the ResourceCustomFieldMapping class with the specified name and member.
</para>
</summary>
<param name="name">
A <see cref="T:System.String"/> value that specifies the name of the custom field. This value is assigned to the <see cref="P:DevExpress.XtraScheduler.CustomFieldMappingBase`1.Name"/> property.
</param>
<param name="member">
A <see cref="T:System.String"/> value that specifies the member value of the custom field mapping. This value is assigned to the <see cref="P:DevExpress.XtraScheduler.CustomFieldMappingBase`1.Member"/> property.
</param>
</member>
<member name="M:DevExpress.XtraScheduler.ResourceCustomFieldMapping.#ctor(System.String,System.String,DevExpress.XtraScheduler.FieldValueType)">
<summary>
<para>Initializes a new instance of the ResourceCustomFieldMapping class with the specified name, member and value type.
</para>
</summary>
<param name="name">
A <see cref="T:System.String"/> value that specifies the name of the custom field. This value is assigned to the <see cref="P:DevExpress.XtraScheduler.CustomFieldMappingBase`1.Name"/> property.
</param>
<param name="member">
A <see cref="T:System.String"/> value that specifies the member value of the custom field mapping. This value is assigned to the <see cref="P:DevExpress.XtraScheduler.CustomFieldMappingBase`1.Member"/> property.
</param>
<param name="valueType">
A <see cref="T:DevExpress.XtraScheduler.FieldValueType"/> enumeration value, representing one of the standard value types.
</param>
</member>
<member name="P:DevExpress.XtraScheduler.ResourceCustomFieldMapping.Member">
<summary>
<para>Gets or sets the name of the field in a data source which should be mapped to a custom property of a resource.
</para>
</summary>
<value>A <see cref="T:System.String"/> value which represents the name of the data field to be mapped.
</value>
</member>
<member name="T:DevExpress.XtraScheduler.iCalendar.iCalendarException">
<summary>
<para>Represents errors that occur during iCalendar data exchange.
</para>
</summary>
</member>
<member name="M:DevExpress.XtraScheduler.iCalendar.iCalendarException.#ctor(System.String)">
<summary>
<para>Initializes a new instance of the iCalendarException class with the specified message string.
</para>
</summary>
<param name="message">
A string representing a message associated with a specific problem in iCalendar data exchange.
</param>
</member>
<member name="M:DevExpress.XtraScheduler.iCalendar.iCalendarException.#ctor">
<summary>
<para>Initializes a new instance of the iCalendarException class with default settings.
</para>
</summary>
</member>
<member name="T:DevExpress.XtraScheduler.Native.PersistentObjectStorageReloadEventHandler">
<summary>
<para>Represents a method that will handle the OnAppointmentsReload and OnResourcesReload events.
</para>
</summary>
</member>
<member name="M:DevExpress.XtraScheduler.Native.PersistentObjectStorageReloadEventHandler.Invoke(System.Object,DevExpress.XtraScheduler.Native.PersistentObjectStorageReloadEventArgs)">
<summary>
<para> Represents a method that will handle the internal OnAppointmentsReload and OnResourcesReload events.
</para>
</summary>
<param name="sender">
The event source.
</param>
<param name="e">
A <see cref="T:DevExpress.XtraScheduler.Native.PersistentObjectStorageReloadEventArgs"/> class instance containing event data.
</param>
</member>
<member name="T:DevExpress.XtraScheduler.Native.PersistentObjectStorageReloadEventArgs">
<summary>
<para>Provides data for the OnAppointmentsReload and OnResourcesReload events. Internal use only.
</para>
</summary>
</member>
<member name="M:DevExpress.XtraScheduler.Native.PersistentObjectStorageReloadEventArgs.#ctor(System.Boolean)">
<summary>
<para> Initializes a new instance of the PersistentObjectStorageReloadEventArgs class with specified settings.
</para>
</summary>
<param name="keepNonPersistentInformation">
<b>true</b> to keep non-persistent information on reloading; otherwise, <b>false</b>.
</param>
</member>
<member name="P:DevExpress.XtraScheduler.Native.PersistentObjectStorageReloadEventArgs.KeepNonPersistentInformation">
<summary>
<para> Flag used to signal whether the volatile information should be retained on reloading. Internal use only.
</para>
</summary>
<value><b>true</b> to keep non-persistent information on reloading; otherwise, <b>false</b>.
</value>
</member>
<member name="T:DevExpress.XtraScheduler.MoreButtonClickedEventHandler">
<summary>
<para>Represents a method that will handle the <see cref="E:DevExpress.XtraScheduler.SchedulerControl.MoreButtonClicked"/> event.
</para>
</summary>
</member>
<member name="M:DevExpress.XtraScheduler.MoreButtonClickedEventHandler.Invoke(System.Object,DevExpress.XtraScheduler.MoreButtonClickedEventArgs)">
<summary>
<para>Represents a method that will handle the <see cref="E:DevExpress.XtraScheduler.SchedulerControl.MoreButtonClicked"/> event.
</para>
</summary>
<param name="sender">
The event source. This parameter identifies the <see cref="T:DevExpress.XtraScheduler.SchedulerControl"/> which raised the event.
</param>
<param name="e">
A <see cref="T:DevExpress.XtraScheduler.MoreButtonClickedEventArgs"/> object which contains event data.
</param>
</member>
<member name="T:DevExpress.XtraScheduler.MoreButtonClickedEventArgs">
<summary>
<para>Provides data for the <see cref="E:DevExpress.XtraScheduler.SchedulerControl.MoreButtonClicked"/> event.
</para>
</summary>
</member>
<member name="M:DevExpress.XtraScheduler.MoreButtonClickedEventArgs.#ctor(System.DateTime,DevExpress.XtraScheduler.TimeInterval,DevExpress.XtraScheduler.Resource)">
<summary>
<para>Initializes a new instance of the MoreButtonClickedEventArgs class with the specified parameters.
</para>
</summary>
<param name="targetViewStart">
A <see cref="T:System.DateTime"/> value which corresponds to the top visible time of the target view.
</param>
<param name="interval">
A <see cref="T:DevExpress.XtraScheduler.TimeInterval"/> object representing a time cell where the "More" button is located.
</param>
<param name="resource">
A <see cref="T:DevExpress.XtraScheduler.Resource"/> associated with the time cell where the "More" button is located.
</param>
</member>
<member name="P:DevExpress.XtraScheduler.MoreButtonClickedEventArgs.Handled">
<summary>
<para>Gets or sets whether an event is handled. If it is handled, default actions are not required.
</para>
</summary>
<value><b>true</b> if no default processing is required; otherwise, <b>false</b>.
</value>
</member>
<member name="P:DevExpress.XtraScheduler.MoreButtonClickedEventArgs.Interval">
<summary>
<para>Gets time interval of the cell where the button is located.
</para>
</summary>
<value>A <see cref="T:DevExpress.XtraScheduler.TimeInterval"/> object representing the time interval of the cell which holds the button.
</value>
</member>
<member name="P:DevExpress.XtraScheduler.MoreButtonClickedEventArgs.Resource">
<summary>
<para>Gets the resource associated with the cell where the button is located.
</para>
</summary>
<value>A <see cref="T:DevExpress.XtraScheduler.Resource"/> of the cell which holds the button.
</value>
</member>
<member name="P:DevExpress.XtraScheduler.MoreButtonClickedEventArgs.TargetViewStart">
<summary>
<para>Gets or sets the top row time of the target view.
</para>
</summary>
<value>A <see cref="T:System.DateTime"/> value representing the start of the first visible time cell in a view.
</value>
</member>
<member name="T:DevExpress.XtraScheduler.Xml.RecurrenceInfoXmlPersistenceHelper">
<summary>
<para>Provides methods used to serialize and de-serialize the <see cref="T:DevExpress.XtraScheduler.RecurrenceInfo"/> object. Intended for internal use.
</para>
</summary>
</member>
<member name="M:DevExpress.XtraScheduler.Xml.RecurrenceInfoXmlPersistenceHelper.#ctor(DevExpress.XtraScheduler.RecurrenceInfo,DevExpress.XtraScheduler.DateSavingType)">
<summary>
<para>Initializes a new instance of the RecurrenceInfoXmlPersistenceHelper class with specified settings.
</para>
</summary>
<param name="recurrenceInfo">
A <see cref="T:DevExpress.XtraScheduler.RecurrenceInfo"/> object, containing information about appointment occurrences.
</param>
<param name="dateSaving">
A <see cref="T:DevExpress.XtraScheduler.DateSavingType"/> enumeration member specifying which time zone is used when saving the DateTime value.
</param>
</member>
<member name="M:DevExpress.XtraScheduler.Xml.RecurrenceInfoXmlPersistenceHelper.CreateObjectXmlLoader(System.Xml.XmlNode)">
<summary>
<para>Creates an object that enables you to load recurrence info from xml.
</para>
</summary>
<param name="root">
An <see cref="T:System.Xml.XmlNode"/> representing the node containing recurrence information.
</param>
<returns>A <b>DevExpress.XtraScheduler.Xml.RecurrenceInfoXmlLoader</b> object that is the descendant of the <b>DevExpress.XtraScheduler.Xml.ObjectXmlLoader</b> class.
</returns>
</member>
<member name="M:DevExpress.XtraScheduler.Xml.RecurrenceInfoXmlPersistenceHelper.ObjectFromXml(System.String,DevExpress.XtraScheduler.DateSavingType)">
<summary>
<para>Restores recurrence information from the specified XML string.
</para>
</summary>
<param name="xml">
A string containing information in xml format.
</param>
<param name="dateSaving">
A <see cref="T:DevExpress.XtraScheduler.DateSavingType"/> enumeration member specifying which time zone is used when saving the DateTime value.
</param>
<returns>A <see cref="T:DevExpress.XtraScheduler.RecurrenceInfo"/> object, containing information about appointment occurrences.
</returns>
</member>
<member name="M:DevExpress.XtraScheduler.Xml.RecurrenceInfoXmlPersistenceHelper.ObjectFromXml(System.Xml.XmlNode,DevExpress.XtraScheduler.DateSavingType)">
<summary>
<para>Restores recurrence information from XML data at the specified root node.
</para>
</summary>
<param name="root">
A <see cref="T:System.Xml.XmlNode"/> class representing the root node of the XML document.
</param>
<param name="dateSaving">
A <see cref="T:DevExpress.XtraScheduler.DateSavingType"/> enumeration member specifying which time zone is used when saving the DateTime value.
</param>
<returns>A <see cref="T:DevExpress.XtraScheduler.RecurrenceInfo"/> object, containing information about appointment occurrences.
</returns>
</member>
<member name="T:DevExpress.XtraScheduler.AllDayEventDateTimeMode">
<summary>
<para>Lists modes that determine how the start and end times of the all-day appointment are interpreted when the scheduler changes its time zone.
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.AllDayEventDateTimeMode.Fixed">
<summary>
<para>All-day event start and end times change as the Scheduler time zone changes.
</para>
</summary>
</member>
<member name="F:DevExpress.XtraScheduler.AllDayEventDateTimeMode.Floating">
<summary>
<para>An all-day event occupies the whole day regardless of the current time zone.
</para>
</summary>
</member>
<member name="T:DevExpress.XtraScheduler.Native.AppointmentConflictsCalculator">
<summary>
<para>Represents a class with methods intended to be helpful in searching for conflicting appointments.
</para>
</summary>
</member>
<member name="M:DevExpress.XtraScheduler.Native.AppointmentConflictsCalculator.#ctor(DevExpress.XtraScheduler.AppointmentBaseCollection)">
<summary>
<para>Initializes a new instance of the AppointmentConflictsCalculator class with the specified appointments.
</para>
</summary>
<param name="appointments">
An <see cref="T:DevExpress.XtraScheduler.AppointmentBaseCollection"/> object containing appointments to be checked for conflicts.
</param>
</member>
<member name="M:DevExpress.XtraScheduler.Native.AppointmentConflictsCalculator.CalculateConflicts(DevExpress.XtraScheduler.Appointment,DevExpress.XtraScheduler.TimeInterval)">
<summary>
<para>Returns a collection of appointments that conflict with the specified one, within the time interval.
</para>
</summary>
<param name="appointment">
An <see cref="T:DevExpress.XtraScheduler.Appointment"/> to be checked for conflicts with appointments in the AppointmentConflictsCalculator collection.
</param>
<param name="interval">
A <see cref="T:DevExpress.XtraScheduler.TimeInterval"/> object, representing the time span for which the check is performed.
</param>
<returns>An <see cref="T:DevExpress.XtraScheduler.AppointmentBaseCollection"/> object, which contains conflicting appointments.
</returns>
</member>
<member name="M:DevExpress.XtraScheduler.Native.AppointmentConflictsCalculator.IsIntersecting(DevExpress.XtraScheduler.TimeInterval,DevExpress.XtraScheduler.Resource)">
<summary>
<para>Indicates whether the specified time interval is shared between appointments assigned to a specified resource .
</para>
</summary>
<param name="interval">
A <see cref="T:DevExpress.XtraScheduler.TimeInterval"/> object, representing the time span being queried.
</param>
<param name="resource">
A <see cref="T:DevExpress.XtraScheduler.Resource"/> object, representing a resource by which appointments are filtered.
</param>
<returns><b>true</b> if appointment time intervals intersect; otherwise, <b>false</b>.
</returns>
</member>
<member name="T:DevExpress.XtraScheduler.FetchAppointmentsEventHandler">
<summary>
<para>Represents a method that will handle the <see cref="E:DevExpress.XtraScheduler.SchedulerStorageBase.FetchAppointments"/> event.
</para>
</summary>
</member>
<member name="M:DevExpress.XtraScheduler.FetchAppointmentsEventHandler.Invoke(System.Object,DevExpress.XtraScheduler.FetchAppointmentsEventArgs)">
<summary>
<para>Represents a method that will handle the <see cref="E:DevExpress.XtraScheduler.SchedulerStorageBase.FetchAppointments"/> event.
</para>
</summary>
<param name="sender">
The event source. This parameter identifies the <see cref="T:DevExpress.XtraScheduler.SchedulerControl"/> which raised the event.
</param>
<param name="e">
A <see cref="T:DevExpress.XtraScheduler.FetchAppointmentsEventArgs"/> object which contains event data.
</param>
</member>
<member name="T:DevExpress.XtraScheduler.FetchAppointmentsEventArgs">
<summary>
<para>Provides data for the <see cref="E:DevExpress.XtraScheduler.SchedulerStorageBase.FetchAppointments"/> event.
</para>
</summary>
</member>
<member name="M:DevExpress.XtraScheduler.FetchAppointmentsEventArgs.#ctor(DevExpress.XtraScheduler.TimeInterval)">
<summary>
<para>Initializes a new instance of the FetchAppointmentsEventArgs class with the specified time interval.
</para>
</summary>
<param name="interval">
A <see cref="T:DevExpress.XtraScheduler.TimeInterval"/> value which represents the time interval for which the appointments are requested.
</param>
</member>
<member name="P:DevExpress.XtraScheduler.FetchAppointmentsEventArgs.ForceReloadAppointments">
<summary>
<para>Gets or sets whether the appointments collection should be reloaded after handling the <see cref="E:DevExpress.XtraScheduler.SchedulerStorageBase.FetchAppointments"/> event.
</para>
</summary>
<value><b>true</b> to reload the appointments collection; otherwise, <b>false</b>.
</value>
</member>
<member name="T:DevExpress.XtraScheduler.OccurrenceCalculator">
<summary>
<para>Enables you to calculate the occurrences for a given recurrent appointment.
</para>
</summary>
</member>
<member name="M:DevExpress.XtraScheduler.OccurrenceCalculator.CalcLastOccurrenceIndex(DevExpress.XtraScheduler.Appointment)">
<summary>
<para>Calculates the index of the last element in the occurrence series.
</para>
</summary>
<param name="pattern">
An <see cref="T:DevExpress.XtraScheduler.Appointment"/> object that is the pattern for calculating the occurrence series.
</param>
<returns>An integer that is the index of the last element in the series.
</returns>
</member>
<member name="M:DevExpress.XtraScheduler.OccurrenceCalculator.CalcOccurrences(DevExpress.XtraScheduler.TimeInterval,DevExpress.XtraScheduler.Appointment)">
<summary>
<para>Creates a sequence of appointments for the specified pattern within the specified time interval.
</para>
</summary>
<param name="interval">
A <see cref="T:DevExpress.XtraScheduler.TimeInterval"/> object, representing the interval in which the occurrences are created.
</param>
<param name="pattern">
An <see cref="T:DevExpress.XtraScheduler.Appointment"/> object, representing the pattern for occurrences.
</param>
<returns>An <see cref="T:DevExpress.XtraScheduler.AppointmentBaseCollection"/> object, representing a collection of occurrences.
</returns>
</member>
<member name="M:DevExpress.XtraScheduler.OccurrenceCalculator.CalcOccurrenceStartTime(System.Int32)">
<summary>
<para>Calculates the lowest boundary for the start time of the occurrence, with the specified index within the calculator's chain.
</para>
</summary>
<param name="index">
An integer, which is the index of the occurrence within the calculator's time interval.
</param>
<returns>A <see cref="T:System.DateTime"/> object, representing the beginning of a time frame enclosing the occurrence.
</returns>
</member>
<member name="M:DevExpress.XtraScheduler.OccurrenceCalculator.CreateInstance(DevExpress.XtraScheduler.RecurrenceInfo)">
<summary>
<para>Creates an instance of the <see cref="T:DevExpress.XtraScheduler.OccurrenceCalculator"/> inheritor according to the specified recurrence type.
</para>
</summary>
<param name="info">
A <see cref="T:DevExpress.XtraScheduler.RecurrenceInfo"/> class instance, specifying the type of calculator being created.
</param>
<returns>An <see cref="T:DevExpress.XtraScheduler.OccurrenceCalculator"/> inheritor instance.
</returns>
</member>
<member name="M:DevExpress.XtraScheduler.OccurrenceCalculator.FindFirstOccurrenceIndex(DevExpress.XtraScheduler.TimeInterval,DevExpress.XtraScheduler.Appointment)">
<summary>
<para>Searches for the first occurrence which corresponds to the pattern, and is located within the specified interval.
</para>
</summary>
<param name="interval">
A <see cref="T:DevExpress.XtraScheduler.TimeInterval"/> object, representing the time span to be searched.
</param>
<param name="pattern">
An <see cref="T:DevExpress.XtraScheduler.Appointment"/> instance, which is the pattern for the occurrence chain.
</param>
<returns>An integer value, which is the index of the first appointment from the occurrence chain that falls within the specified interval, or -1 if the specified interval can not contain an occurrence.
</returns>
</member>
<member name="M:DevExpress.XtraScheduler.OccurrenceCalculator.FindLastOccurrenceIndex(DevExpress.XtraScheduler.TimeInterval,DevExpress.XtraScheduler.Appointment)">
<summary>
<para>Searches for the last occurrence which corresponds to the pattern, and is located within the specified interval.
</para>
</summary>
<param name="interval">
A <see cref="T:DevExpress.XtraScheduler.TimeInterval"/> object, representing the time span to be searched.
</param>
<param name="pattern">
An <see cref="T:DevExpress.XtraScheduler.Appointment"/> instance, which is the pattern for the occurrence chain.
</param>
<returns>An integer value, which is the index of the last appointment from the occurrence chain that falls within the specified interval, or -1 if the specified interval can not contain an occurrence.
</returns>
</member>
<member name="M:DevExpress.XtraScheduler.OccurrenceCalculator.FindNextOccurrenceTimeAfter(System.DateTime,DevExpress.XtraScheduler.Appointment)">
<summary>
<para>Searches for the first occurrence which corresponds to the pattern, and starts after the specified time.
</para>
</summary>
<param name="after">
A <see cref="T:System.DateTime"/> object, representing the time after which the search is performed.
</param>
<param name="pattern">
An <see cref="T:DevExpress.XtraScheduler.Appointment"/> instance, which is the pattern for the occurrence chain.
</param>
<returns>A <see cref="T:System.DateTime"/> value, representing the start time of the first appointment in the occurrence chain that starts after the specified time, or the <b>DateTime.MaxValue</b> in the case of an unsuccessful search.
</returns>
</member>
<member name="M:DevExpress.XtraScheduler.OccurrenceCalculator.FindOccurrenceIndex(System.DateTime,DevExpress.XtraScheduler.Appointment)">
<summary>
<para>Searches for the occurrence which corresponds to the pattern and starts at the specified time.
</para>
</summary>
<param name="date">
A <see cref="T:System.DateTime"/> object, which is the start time of the occurrence to search for.
</param>
<param name="pattern">
An <see cref="T:DevExpress.XtraScheduler.Appointment"/> instance, which is the pattern for the occurrence chain.
</param>
<returns>An integer value, which is the index of the appointment from the occurrence chain that starts at the specified time, or -1 if the search fails.
</returns>
</member>
<member name="T:DevExpress.XtraScheduler.QueryResourceColorSchemaEventHandler">
<summary>
<para>References a method that will handle the <see cref="E:DevExpress.XtraScheduler.SchedulerControl.QueryResourceColorSchema"/> and <see cref="E:DevExpress.Xpf.Scheduler.SchedulerControl.QueryResourceColorSchema"/> events.
</para>
</summary>
</member>
<member name="M:DevExpress.XtraScheduler.QueryResourceColorSchemaEventHandler.Invoke(System.Object,DevExpress.XtraScheduler.QueryResourceColorSchemaEventArgs)">
<summary>
<para>Represents a method that will handle the <see cref="E:DevExpress.XtraScheduler.SchedulerControl.QueryResourceColorSchema"/> and <see cref="E:DevExpress.Xpf.Scheduler.SchedulerControl.QueryResourceColorSchema"/> events.
</para>
</summary>
<param name="sender">
The event source. This parameter identifies the <see cref="T:DevExpress.XtraScheduler.SchedulerControl"/> or <see cref="T:DevExpress.Xpf.Scheduler.SchedulerControl"/> which raised the event.
</param>
<param name="e">
A <see cref="T:DevExpress.XtraScheduler.QueryResourceColorSchemaEventArgs"/> object which contains event data.
</param>
</member>
<member name="T:DevExpress.XtraScheduler.ISchedulerInplaceEditorEx">
<summary>
<para>The interface is designed for implementing a custom in-place editor.
</para>
</summary>
</member>
<member name="M:DevExpress.XtraScheduler.ISchedulerInplaceEditorEx.Activate">
<summary>
<para>Initializes the control, subscribes to its major events and sets the focus to it.
</para>
</summary>
</member>
<member name="M:DevExpress.XtraScheduler.ISchedulerInplaceEditorEx.ApplyChanges">
<summary>
<para>Passes the value, obtained form the editor, to the appointment and performs an assignment to the appointment's property.
</para>
</summary>
</member>
<member name="E:DevExpress.XtraScheduler.ISchedulerInplaceEditorEx.CommitChanges">
<summary>
<para>Raise this event to save the modified value to the underlying data source.
</para>
</summary>
</member>
<member name="M:DevExpress.XtraScheduler.ISchedulerInplaceEditorEx.Deactivate">
<summary>
<para>Unsubscribes major events and releases resources, if necessary.
</para>
</summary>
</member>
<member name="E:DevExpress.XtraScheduler.ISchedulerInplaceEditorEx.RollbackChanges">
<summary>
<para>Raise this event to cancel changes and replace the modified value with the former value (a value before modification).
</para>
</summary>
</member>
<member name="T:DevExpress.XtraScheduler.Tools.FreeTimeCalculator">
<summary>
<para>Enables you to find available spare time intervals within the specified period.
</para>
</summary>
</member>
<member name="M:DevExpress.XtraScheduler.Tools.FreeTimeCalculator.#ctor(DevExpress.XtraScheduler.SchedulerStorageBase)">
<summary>
<para>Initializes a new instance of the FreeTimeCalculator class.
</para>
</summary>
<param name="storage">
A <see cref="T:DevExpress.XtraScheduler.SchedulerStorageBase"/> object, which holds the appointments for which calculations are performed.
</param>
</member>
<member name="P:DevExpress.XtraScheduler.Tools.FreeTimeCalculator.ApplyAppointmentFilters">
<summary>
<para>Gets or sets whether the search for free time intervals is performed considering only filtered appointments.
</para>
</summary>
<value><b>true</b> the filter is applied before the search starts; otherwise, <b>false</b>. Default value is <b>true</b>.
</value>
</member>
<member name="M:DevExpress.XtraScheduler.Tools.FreeTimeCalculator.CalculateFreeTime(DevExpress.XtraScheduler.TimeInterval,DevExpress.XtraScheduler.Resource)">
<summary>
<para>Finds all time intervals that are not in use for the specified resource.
</para>
</summary>
<param name="interval">
A <see cref="T:DevExpress.XtraScheduler.TimeInterval"/> object, representing the time period in which the search is performed.
</param>
<param name="resource">
A <see cref="T:DevExpress.XtraScheduler.Resource"/> object, which specifies a particular resource to narrow a search.
</param>
<returns>A <see cref="T:DevExpress.XtraScheduler.TimeIntervalCollection"/> collection, containing all spare time intervals.
</returns>
</member>
<member name="M:DevExpress.XtraScheduler.Tools.FreeTimeCalculator.CalculateFreeTime(DevExpress.XtraScheduler.TimeInterval)">
<summary>
<para>Finds all time intervals that are not in use within the specified time period.
</para>
</summary>
<param name="interval">
A <see cref="T:DevExpress.XtraScheduler.TimeInterval"/> object, representing the time period in which the search is performed.
</param>
<returns>A <see cref="T:DevExpress.XtraScheduler.TimeIntervalCollection"/> collection, containing all spare time intervals.
</returns>
</member>
<member name="M:DevExpress.XtraScheduler.Tools.FreeTimeCalculator.FindFreeTimeInterval(DevExpress.XtraScheduler.TimeInterval,System.TimeSpan,System.Boolean)">
<summary>
<para>Performs a search for the nearest available time slot with the specified duration within the specified interval.
</para>
</summary>
<param name="interval">
A <see cref="T:DevExpress.XtraScheduler.TimeInterval"/> object, representing the time period in which the search is performed.
</param>
<param name="duration">
A <see cref="T:System.TimeSpan"/> structure, which represents the duration of a time slot to find.
</param>
<param name="forward">
If <b>true</b>, the search starts at the interval.Start and continues forward in time. If <b>false</b>, it starts at interval.End, and continues backwards.
</param>
<returns>A <see cref="T:DevExpress.XtraScheduler.TimeInterval"/> object, representing the interval which meets the conditions, or the <see cref="P:DevExpress.XtraScheduler.TimeInterval.Empty"/> value, if an interval is not found.
</returns>
</member>
<member name="M:DevExpress.XtraScheduler.Tools.FreeTimeCalculator.FindFreeTimeInterval(DevExpress.XtraScheduler.TimeInterval,DevExpress.XtraScheduler.Resource,System.TimeSpan,System.Boolean)">
<summary>
<para>Performs a search for the time slot with the specified minimum duration within the specified interval, and assigned to the specified resource.
</para>
</summary>
<param name="interval">
A <see cref="T:DevExpress.XtraScheduler.TimeInterval"/> object, representing the time period in which the search is performed.
</param>
<param name="resource">
A <see cref="T:DevExpress.XtraScheduler.Resource"/> of the appointments taken into account when the search is performed.
</param>
<param name="duration">
A <see cref="T:System.TimeSpan"/> structure, which represents the duration of a time slot to find.
</param>
<param name="forward">
If <b>true</b>, the search starts at the interval.Start and continues forward in time. If <b>false</b>, it starts at interval.End, and continues backwards.
</param>
<returns>A <see cref="T:DevExpress.XtraScheduler.TimeInterval"/> object, representing the interval which meets the conditions, or the <see cref="P:DevExpress.XtraScheduler.TimeInterval.Empty"/> value, if an interval is not found.
</returns>
</member>
<member name="E:DevExpress.XtraScheduler.Tools.FreeTimeCalculator.IntervalFound">
<summary>
<para>This event is raised for each interval before it is added to the collection. It enables you to change a free interval after it is found.
</para>
</summary>
</member>
<member name="P:DevExpress.XtraScheduler.Tools.FreeTimeCalculator.Storage">
<summary>
<para>Gets the Storage object, containing the appointments for which calculations are performed.
</para>
</summary>
<value>A <see cref="T:DevExpress.XtraScheduler.SchedulerStorageBase"/> object, which holds the appointments.
</value>
</member>
<member name="T:DevExpress.XtraScheduler.QueryWorkTimeEventHandler">
<summary>
<para>Represents a method that will handle the <see cref="E:DevExpress.XtraScheduler.SchedulerControl.QueryWorkTime"/> event.
</para>
</summary>
</member>
<member name="M:DevExpress.XtraScheduler.QueryWorkTimeEventHandler.Invoke(System.Object,DevExpress.XtraScheduler.QueryWorkTimeEventArgs)">
<summary>
<para>Represents a method that will handle the <see cref="E:DevExpress.XtraScheduler.SchedulerControl.QueryWorkTime"/> event.
</para>
</summary>
<param name="sender">
The event source. This parameter identifies the <see cref="T:DevExpress.XtraScheduler.SchedulerControl"/> which raised the event.
</param>
<param name="e">
A <see cref="T:DevExpress.XtraScheduler.QueryWorkTimeEventArgs"/> object which contains event data.
</param>
</member>
<member name="T:DevExpress.XtraScheduler.QueryWorkTimeEventArgs">
<summary>
<para>Provides data for the <see cref="E:DevExpress.XtraScheduler.SchedulerControl.QueryWorkTime"/> event.
</para>
</summary>
</member>
<member name="M:DevExpress.XtraScheduler.QueryWorkTimeEventArgs.#ctor(DevExpress.XtraScheduler.TimeInterval,DevExpress.XtraScheduler.Resource)">
<summary>
<para>Initializes a new instance of the QueryWorkTimeEventArgs class with the specified working time interval and resource.
</para>
</summary>
<param name="interval">
A <see cref="T:DevExpress.XtraScheduler.TimeInterval"/> object, representing the working time interval
</param>
<param name="resource">
A <see cref="T:DevExpress.XtraScheduler.Resource"/> object, for which the working time is queried.
</param>
</member>
<member name="P:DevExpress.XtraScheduler.QueryWorkTimeEventArgs.Interval">
<summary>
<para>Gets the time interval for which the working time is queried.
</para>
</summary>
<value>A <see cref="T:DevExpress.XtraScheduler.TimeInterval"/> object.
</value>
</member>
<member name="P:DevExpress.XtraScheduler.QueryWorkTimeEventArgs.Resource">
<summary>
<para>Gets the resource for which the working time interval is queried.
</para>
</summary>
<value>A <see cref="T:DevExpress.XtraScheduler.Resource"/> object instance.
</value>
</member>
<member name="P:DevExpress.XtraScheduler.QueryWorkTimeEventArgs.WorkTime">
<summary>
<para>Gets or sets the working time interval.
</para>
</summary>
<value>A <see cref="T:DevExpress.XtraScheduler.TimeOfDayInterval"/> object, representing the work time interval.
</value>
</member>
<member name="P:DevExpress.XtraScheduler.QueryWorkTimeEventArgs.WorkTimes">
<summary>
<para>Provides access to the collection of work times specified for a single day.
</para>
</summary>
<value>A <see cref="T:DevExpress.XtraScheduler.TimeOfDayIntervalCollection"/> representing time intervals for a day.
</value>
</member>
<member name="T:DevExpress.XtraScheduler.Drawing.AppointmentImageInfoCoreCollection`1">
<summary>
<para>Defines a collection of objects that contain information on appointment images.
</para>
</summary>
</member>
<member name="M:DevExpress.XtraScheduler.Drawing.AppointmentImageInfoCoreCollection`1.AddStandard(DevExpress.XtraScheduler.Drawing.AppointmentImageType)">
<summary>
<para>Adds a standard image of the specified type to the collection of images allowed for display within the appointment body.
</para>
</summary>
<param name="type">
An <see cref="T:DevExpress.XtraScheduler.Drawing.AppointmentImageType"/> enumeration member specifying the image type.
</param>
<returns>An integer that is the index of the image in the collection.
</returns>
</member>
<member name="M:DevExpress.XtraScheduler.Drawing.AppointmentImageInfoCoreCollection`1.AddStandardInternal(DevExpress.XtraScheduler.Drawing.AppointmentImageType)">
<summary>
<para>This member supports the internal infrastructure and is not intended to be used directly from your code.
</para>
</summary>
<param name="type">
An <see cref="T:DevExpress.XtraScheduler.Drawing.AppointmentImageType"/> enumeration member specifying the image type.
</param>
<returns>An integer that is the index of an image in the collection.
</returns>
</member>
<member name="M:DevExpress.XtraScheduler.Drawing.AppointmentImageInfoCoreCollection`1.GetAppointmentImageInfos(DevExpress.XtraScheduler.Drawing.AppointmentImageType)">
<summary>
<para>Enables you to access the images displayed within a particular appointment, by the specified image type.
</para>
</summary>
<param name="type">
An <see cref="T:DevExpress.XtraScheduler.Drawing.AppointmentImageType"/> enumeration member specifying the image type.
</param>
<returns>An array of <see cref="T:DevExpress.XtraScheduler.Drawing.AppointmentImageInfo"/> objects corresponding to images for display within an appointment.
</returns>
</member>
</members>
</doc>