You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
OnDoc/Client/bin/Debug/Syncfusion.Schedule.Windows...

6729 lines
365 KiB

<?xml version="1.0"?>
<doc>
<assembly>
<name>Syncfusion.Schedule.Windows</name>
</assembly>
<members>
<member name="T:Syncfusion.Windows.Forms.Schedule.NamespaceDoc">
<summary>
The Syncfusion.Windows.Forms.Schedule namespace contains classes that defines the functionality of Essential ScheduleControl that scheduling new appointment and modifying the appointments with a Navigation calendar.
It also specifies the multiple views of the scheduled appointments in the ScheduleControl.
</summary>
</member>
<member name="T:Syncfusion.Windows.Forms.Schedule.AlertForm">
<summary>
Displays appointment reminder alerts.
</summary>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.AlertForm.#ctor">
<summary>
Initializes a new instance of the <see cref="T:Syncfusion.Windows.Forms.Schedule.AlertForm"/> class.
</summary>
</member>
<member name="F:Syncfusion.Windows.Forms.Schedule.AlertForm.components">
<summary>
Required designer variable.
</summary>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.AlertForm.Dispose(System.Boolean)">
<summary>
Clean up any resources being used.
</summary>
<param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.AlertForm.InitializeComponent">
<summary>
Required method for Designer support - do not modify
the contents of this method with the code editor.
</summary>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.AlertForm.ResetAlertWindow">
<summary>
Clears all events and data used by this AlertWindow and closes it.
</summary>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.AlertForm.SetDataInfo(Syncfusion.Windows.Forms.Schedule.ScheduleControl)">
<summary>
Informs the form of the active IScheduleAppointmentList and the IDataProvider.
</summary>
<param name="schedule">The <see cref="T:Syncfusion.Windows.Forms.Schedule.ScheduleControl"/>.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.AlertForm.AdjustAlertList">
<summary>
Creates a list of items that require alerts at the time of the call.
</summary>
<remarks>
This method is called when <see cref="P:Syncfusion.Windows.Forms.Schedule.ScheduleControl.EnableAlerts"/> is set true.
</remarks>
</member>
<member name="F:Syncfusion.Windows.Forms.Schedule.AlertForm.Grid">
<summary>
Gets the GridControl that lists the alert items.
</summary>
<remarks>
You can directly access this GridControl to change its look. Here is some code that
changes its look.
</remarks>
<example>
<code lang="C#">
this.ScheduleControl1.AlertWindow.BackColor = Color.FromArgb(240, 240, 255);
this.ScheduleControl1.AlertWindow.Grid.TableStyle.BackColor = Color.FromArgb(100, 240, 240, 255);
this.ScheduleControl1.AlertWindow.Grid.Properties.BackgroundColor = Color.FromArgb(100, Color.Blue);
Syncfusion.Windows.Forms.Grid.GridStyleInfo headerStyle = this.ScheduleControl1.AlertWindow.Grid.BaseStylesMap["Header"].StyleInfo;
headerStyle.Interior = new Syncfusion.Drawing.BrushInfo(Syncfusion.Drawing.GradientStyle.Vertical, Color.Blue, Color.White);
this.ScheduleControl1.AlertWindow.Grid.Refresh();
</code>
<code lang="VB">
Me.ScheduleControl1.AlertWindow.BackColor = Color.FromArgb(240, 240, 255)
Me.ScheduleControl1.AlertWindow.Grid.TableStyle.BackColor = Color.FromArgb(100, 240, 240, 255)
Me.ScheduleControl1.AlertWindow.Grid.Properties.BackgroundColor = Color.FromArgb(100, Color.Blue)
Dim headerStyle As Syncfusion.Windows.Forms.Grid.GridStyleInfo = Me.ScheduleControl1.AlertWindow.Grid.BaseStylesMap("Header").StyleInfo
headerStyle.Interior = New Syncfusion.Drawing.BrushInfo(Syncfusion.Drawing.GradientStyle.Vertical, Color.Blue, Color.White)
Me.ScheduleControl1.AlertWindow.Grid.Refresh()
</code>
</example>
</member>
<member name="F:Syncfusion.Windows.Forms.Schedule.AlertForm.labelSubject">
<summary>
Gets the Label that displays the Subject of the item.
</summary>
</member>
<member name="F:Syncfusion.Windows.Forms.Schedule.AlertForm.labelTime">
<summary>
Gets the Label that displays the StartTime of the item.
</summary>
</member>
<member name="F:Syncfusion.Windows.Forms.Schedule.AlertForm.buttonDismissAll">
<summary>
Gets the Button that dismisses all the listed items.
</summary>
</member>
<member name="F:Syncfusion.Windows.Forms.Schedule.AlertForm.buttonSnooze">
<summary>
Gets the Button that removes the AlertWindow and redisplays it in a specified period, SnoozeTime.
</summary>
</member>
<member name="F:Syncfusion.Windows.Forms.Schedule.AlertForm.buttonDismiss">
<summary>
Gets the Button that dismisses the selected item.
</summary>
</member>
<member name="P:Syncfusion.Windows.Forms.Schedule.AlertForm.Item(System.Int32)">
<summary>
Gets the i-th IScheduleAppointment in the alert list.
</summary>
<param name="i">An integer between 0 and <see cref="P:Syncfusion.Windows.Forms.Schedule.AlertForm.Count"/>.</param>
<returns>An IScheduleAppointment.</returns>
<remarks>
If the indexer is outside the valid number of items in the alert list, null is returned.
</remarks>
</member>
<member name="P:Syncfusion.Windows.Forms.Schedule.AlertForm.Count">
<summary>
Gets the number of items in the current alert list.
</summary>
</member>
<member name="P:Syncfusion.Windows.Forms.Schedule.AlertForm.AlertStrings">
<summary>
Gets or sets the strings used as part of the alert window.
</summary>
</member>
<member name="P:Syncfusion.Windows.Forms.Schedule.AlertForm.CheckTimerIntervalInMinutes">
<summary>
Gets or sets the time interval (in minutes) between checks for any item needing an alert.
</summary>
</member>
<member name="P:Syncfusion.Windows.Forms.Schedule.AlertForm.SnoozeMinutes">
<summary>
Gets or sets the number of minutes that pressing the Snooze Button will hide the Alert window.
</summary>
</member>
<member name="P:Syncfusion.Windows.Forms.Schedule.AlertForm.SoundAlert">
<summary>
Gets or sets a value indicating whether a MeesageBeep should sound when the AlertWindow is shown.
</summary>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.AlertForm.GetMinutesFromDisplayValue(System.String)">
<summary>
Gets the integer equivalents of the strings in the Reminder dropdown.
</summary>
<param name="s">The string to convert.</param>
<returns>The minute value from display string.</returns>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.AlertForm.GetTimeString(System.Double)">
<summary>
Gets the time from the given minute.
</summary>
<param name="minutes">The minute value to convert.</param>
<returns>returns the string to be displayed in the Time column</returns>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.AlertForm.RaiseItemChanging(Syncfusion.Schedule.IScheduleAppointment,Syncfusion.Schedule.ItemAction)">
<summary>
To raise the item changing event.
</summary>
<param name="item">IScheduleAppointment item</param>
<param name="action">ItemAction</param>
<returns>Returns the boolean value.</returns>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.AlertForm.RaiseItemChanged(Syncfusion.Schedule.IScheduleAppointment,Syncfusion.Schedule.ItemAction)">
<summary>
To raise the item changed event.
</summary>
<param name="item">IScheduleAppointment item</param>
<param name="action">ItemAction</param>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.AlertForm.OnVisibleChanged(System.EventArgs)">
<summary>
Overrides the <see cref="T:System.Windows.Forms.Control.VisibleChanged"/> event to sound a beep when an alert appears.
</summary>
<param name="e">The <see cref="T:System.EventArgs"/> that contains the event data.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.AlertForm.OnAlertSounding(System.ComponentModel.CancelEventArgs)">
<summary>
Raises the <see cref="F:Syncfusion.Windows.Forms.Schedule.AlertForm.AlertSounding"/> event.
</summary>
<param name="e">The <see cref="T:System.ComponentModel.CancelEventArgs"/> that contains the event data.</param>
</member>
<member name="F:Syncfusion.Windows.Forms.Schedule.AlertForm.AlertSounding">
<summary>
Occurs when an AlertWindow is made visible and SoundAlert is true.
</summary>
<remarks>
You can use this event to apply custom notification sounds if desired. Setting
e.Cancel = true will prevent the default MessageBeep. The sender object will
be the ALertForm, and you can index it to retrieve the current IScheduleAppointments
waiting in the alert list. You can use <see cref="P:Syncfusion.Windows.Forms.Schedule.AlertForm.Count"/> to get the number of items
in the current alert list.
</remarks>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.AlertForm.OnClosing(System.ComponentModel.CancelEventArgs)">
<summary>
Overrides the <see cref="T:System.Windows.Forms.Form.Closing"/> event to make sure timer is off and hide the form instead of closing it.
</summary>
<param name="e">The <see cref="T:System.ComponentModel.CancelEventArgs"/> that contains the event data.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.AlertForm.Grid_CurrentCellMoved(System.Object,Syncfusion.Windows.Forms.Grid.GridCurrentCellMovedEventArgs)">
<summary>
Used to sync up labels on the form with the current selected item in the grid.
</summary>
<param name="sender">The source grid control.</param>
<param name="e">The <see cref="T:Syncfusion.Windows.Forms.Grid.GridCurrentCellMovedEventArgs"/> that contains the event data.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.AlertForm.Grid_QueryColWidth(System.Object,Syncfusion.Windows.Forms.Grid.GridRowColSizeEventArgs)">
<summary>
Used to make column 1 take up the remaining client width.
</summary>
<param name="sender">The source grid control.</param>
<param name="e">The <see cref="T:Syncfusion.Windows.Forms.Grid.GridRowColSizeEventArgs"/> that contains the event data.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.AlertForm.Grid_CurrentCellActivating(System.Object,Syncfusion.Windows.Forms.Grid.GridCurrentCellActivatingEventArgs)">
<summary>
Used to avoid any activations.
</summary>
<param name="sender">The source grid control.</param>
<param name="e">The <see cref="T:Syncfusion.Windows.Forms.Grid.GridCurrentCellActivatingEventArgs"/> that contains the event data.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.AlertForm.Grid_QueryRowCount(System.Object,Syncfusion.Windows.Forms.Grid.GridRowColCountEventArgs)">
<summary>
Used to set the row count from the list
</summary>
<param name="sender">The source grid control.</param>
<param name="e">The <see cref="T:Syncfusion.Windows.Forms.Grid.GridRowColCountEventArgs"/> that contains the event data.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.AlertForm.Grid_QueryCellInfo(System.Object,Syncfusion.Windows.Forms.Grid.GridQueryCellInfoEventArgs)">
<summary>
Used to set the values from the list.
</summary>
<param name="sender">The source grid control.</param>
<param name="e">The <see cref="T:Syncfusion.Windows.Forms.Grid.GridQueryCellInfoEventArgs"/> that contains the event data.</param>
</member>
<member name="T:Syncfusion.Windows.Forms.Schedule.AppointmentForm">
<summary>
Displays a form allowing a user to edit information in a <see cref="T:Syncfusion.Schedule.IScheduleAppointment"/>.
</summary>
</member>
<member name="F:Syncfusion.Windows.Forms.Schedule.AppointmentForm.ShowRecurDialog">
<summary>
Gets the button that is used to display the default recurrence dialog if needed by the data provider.
</summary>
<remarks>
If you want a custom dialog display, you can call <see cref="M:Syncfusion.Windows.Forms.Schedule.AppointmentForm.UnhookDefaultRecurrenceDialog"/>,
and then subscribe to this member's Click event to display your own dialog.
</remarks>
</member>
<member name="F:Syncfusion.Windows.Forms.Schedule.AppointmentForm.components">
<summary>
Required designer variable.
</summary>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.AppointmentForm.#ctor">
<summary>
Initializes a new instance of the <see cref="T:Syncfusion.Windows.Forms.Schedule.AppointmentForm"/>.
</summary>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.AppointmentForm.switchRTL(System.Collections.IEnumerable)">
<summary>
Switches the controls to RTL mode.
</summary>
<param name="controls">The control collections.</param>
</member>
<member name="P:Syncfusion.Windows.Forms.Schedule.AppointmentForm.IgnoreScheduleRTLSettings">
<summary>
Gets or sets whether this form will use the RTL settings from
the ScheduleControl to decide whether to mirror the form.
</summary>
</member>
<member name="P:Syncfusion.Windows.Forms.Schedule.AppointmentForm.CreateParams">
<override/>
<summary>
Gets the required creation parameters when the control handle is created.
</summary>
</member>
<member name="P:Syncfusion.Windows.Forms.Schedule.AppointmentForm.Font">
<summary>
Gets or sets the <see cref="T:System.Drawing.Font"/> value for Form.
</summary>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.AppointmentForm.OnLoad(System.EventArgs)">
<summary>
Overridden to conditionally display the recurring event button.
</summary>
<param name="e">The <see cref="T:System.EventArgs"/> that contains the event data.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.AppointmentForm.UnhookDefaultRecurrenceDialog">
<summary>
Use this method unsubscribe to the click event that opens the default recurrence dialog.
</summary>
<remarks>
</remarks>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.AppointmentForm.Dispose(System.Boolean)">
<summary>
Clean up any resources being used.
</summary>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.AppointmentForm.InitializeComponent">
<summary>
Required method for Designer support - do not modify
the contents of this method with the code editor.
</summary>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.AppointmentForm.SetDataProvider(Syncfusion.Schedule.IScheduleDataProvider,Syncfusion.Schedule.IScheduleAppointment,System.Int32,System.String)">
<summary>
Initializes the form using the <see cref="T:Syncfusion.Schedule.IScheduleDataProvider"/> that provides
the data for the ScheduleControl.
</summary>
<param name="provider">The IScheduleDataProvider object.</param>
<param name="item">The current item to be displayed on this form.</param>
<param name="minimumTimeSlot">The time increment used in the time dropdowns.</param>
<param name="format">The time format used in the time dropdowns.</param>
<remarks>
IScheduleDataProvider is the object that provides the data to the ScheduleControl.
This includes items like the DropLists that provide the options for many of the
properties you see in IScheduleAppointments inaddition to the IScheduleAppointments themselves. This
method uses the information from the IScheduleDataProvider to populate the controls
on this form.
</remarks>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.AppointmentForm.SetDataProvider(Syncfusion.Schedule.IScheduleDataProvider,Syncfusion.Schedule.IScheduleAppointment,System.Int32,System.String,Syncfusion.Windows.Forms.Schedule.ScheduleControl)">
<summary>
Sets the data provider to the scheduler.
</summary>
<param name="provider">providing the schedule item data to the ScheduleControl.</param>
<param name="item">Defines the individual schedule items.</param>
<param name="minimumTimeSlot">Specifies the timeslot.</param>
<param name="format">Set the format.</param>
<param name="schedule">Provides the schedule functionality.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.AppointmentForm.SetDataProvider(Syncfusion.Schedule.IScheduleDataProvider,Syncfusion.Schedule.IScheduleAppointment)">
<summary>
Initializes the form using the <see cref="T:Syncfusion.Schedule.IScheduleDataProvider"/> that provides
the data for the ScheduleControl.
</summary>
<param name="provider">The IScheduleDataProvider object.</param>
<param name="item">The current item to be displayed on this form.</param>
<remarks>
IScheduleDataProvider is the object that provides the data to the ScheduleControl.
This includes items like the DropLists that provide the options for many of the
properties you see in IScheduleAppointments in addition to the IScheduleAppointments themselves. This
method uses the information from the IScheduleDataProvider to populate the controls
on this form.
</remarks>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.AppointmentForm.SetItemIntoForm">
<summary>
Sets the controls in <see cref="T:Syncfusion.Windows.Forms.Schedule.AppointmentForm"/>.
</summary>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.AppointmentForm.SetTextInRecurButton(Syncfusion.Schedule.IRecurringScheduleAppointment)">
<summary>
Sets the text for the recurring button.
</summary>
<param name="recurItem">The <see cref="T:Syncfusion.Schedule.IRecurringScheduleAppointment"/> item.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.AppointmentForm.SetEndComboBoxList">
<summary>
Sets the end time combo box dropdown list items.
</summary>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.AppointmentForm.DateTimeToIndex(System.DateTime)">
<summary>
Converts the date time value to the drop down list item index.
</summary>
<param name="dt">The <see href="System.DateTime"/> to convert.</param>
<returns>An index of the drop down list item.</returns>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.AppointmentForm.DateTimeToIndex(System.String)">
<summary>
Converts the DateTime value to the index of the drop down.
</summary>
<param name="str">The date time value string to convert.</param>
<returns>An index of the dropdown</returns>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.AppointmentForm.SaveChangesToItem">
<summary>
Moves values displayed in the form's Controls to the Item object.
</summary>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.AppointmentForm.GetItemFromForm">
<summary>
populates the item from the values in the form
</summary>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.AppointmentForm.FindSelectIndex(System.String,System.String)">
<summary>
Used to find the selected index based on the date time value.
</summary>
<param name="s">A elapsed date time string.</param>
<param name="str">Start date time string.</param>
<returns>Index of the drop down item.</returns>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.AppointmentForm.FindSelectIndex(System.String,System.DateTime)">
<summary>
Used to find the selected index based on the date time value.
</summary>
<param name="s">An elapsed date time string.</param>
<param name="dateTime">Start <see cref="T:System.DateTime"/>.</param>
<returns>Index of the drop down item.</returns>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.AppointmentForm.FindClosestChoice(System.String,System.DateTime)">
<summary>
Used to find the closet item in the drop down list.
</summary>
<param name="s">An elapsed date time string.</param>
<param name="dateTime">Start <see cref="T:System.DateTime"/>.</param>
<returns>Index of the closest item value based on date time value.</returns>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.AppointmentForm.FindClosestChoice(System.String,System.String)">
<summary>
Used to find the closet item in the drop down list.
</summary>
<param name="s">An elapsed date time string.</param>
<param name="str">Start date time value string.</param>
<returns>Index of the closest item value based on date time value.</returns>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.AppointmentForm.button1_Click(System.Object,System.EventArgs)">
<summary>
Used to save the appointment form.
</summary>
<param name="sender">The source control.</param>
<param name="e">The <see cref="T:System.EventArgs"/> that contains the event data.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.AppointmentForm.button2_Click(System.Object,System.EventArgs)">
<summary>
Used to cancel the changes in Appointment form.
</summary>
<param name="sender">the source control.</param>
<param name="e">The <see cref="T:System.EventArgs"/> that contains the data.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.AppointmentForm.button3_Click(System.Object,System.EventArgs)">
<summary>
Used to show the recurring form.
</summary>
<param name="sender">The source control.</param>
<param name="e">The <see cref="T:System.EventArgs"/> that contains the event data.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.AppointmentForm.endComboBoxBase_DropDown(System.Object,System.EventArgs)">
<summary>
Used to populate the drop list
</summary>
<param name="sender">The source control.</param>
<param name="e">The <see cref="T:System.EventArgs"/> that contains the event data.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.AppointmentForm.allDayEventCheckBox_CheckedChanged(System.Object,System.EventArgs)">
<summary>
Used to enable/disable controls dynamically
</summary>
<param name="sender">The source control.</param>
<param name="e">The <see cref="T:System.EventArgs"/> that contains the event data.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.AppointmentForm.reminderCheckBox_CheckedChanged(System.Object,System.EventArgs)">
<summary>
Used to enable/disable checkbox dynamically
</summary>
<param name="sender">The source control.</param>
<param name="e">The <see cref="T:System.EventArgs"/> that contains the event data.</param>
</member>
<member name="F:Syncfusion.Windows.Forms.Schedule.AppointmentForm.DisplayStrings">
<summary>
Gets or sets the various strings used in the AppointmentForm.
</summary>
<remarks>
Modifying the strings in this array will affect the display of the AppointmentForm.
You can use these strings to localize the labels that appear on the form.
</remarks>
<example>
Here are the default values of this string array.
<code lang="C#">
public static string[] DisplayStrings = new string[]
{
"Subject:", // 0
"Location:", // 1
"Show time as:", // 2
"Reminder:", // 3
"All Day Event", // 4
"End Time:", // 5
"Start Time:", // 6
"Label:", // 7
"subject", // 8
"Cancel", // 9
"Save and Close", // 10
"Enter Appointment", // 11
"Delete this appointment that spans more than one day?", // 12
"Delete a Span", // 13
"Delete Span", // 14
"Edit Recurring", // 15
"Make Recurring" // 16
};
</code>
</example>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.AppointmentForm.InitStrings">
<summary>
Initializes the default strings in appointment form.
</summary>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.AppointmentForm.PopulateTimeListBoxes(System.Int32,System.String)">
<summary>
Used to populate the time.
</summary>
<param name="minimumTimeSlot">The minimum time slot.</param>
<param name="format">The number format.</param>
</member>
<member name="T:Syncfusion.Windows.Forms.Schedule.AppointmentTimeChangedEventHandler">
<summary>
Represents the method that will handle the <see cref="E:Syncfusion.Windows.Forms.Schedule.ScheduleControl.AppointmentTimeChanged"/> event.
</summary>
<param name="e">The <see cref="T:Syncfusion.Windows.Forms.Schedule.AppointmentTimeChangedEventArgs"/> that contains the event data.</param>
<param name="sender">The source control.</param>
</member>
<member name="T:Syncfusion.Windows.Forms.Schedule.AppointmentTimeChangedEventArgs">
<summary>
Provides data for the <see cref="E:Syncfusion.Windows.Forms.Schedule.ScheduleControl.AppointmentTimeChanged"/> event.
</summary>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.AppointmentTimeChangedEventArgs.#ctor">
<summary>
Initializes a new instance of the <see cref="T:Syncfusion.Windows.Forms.Schedule.AppointmentTimeChangedEventArgs"/> class.
</summary>
</member>
<member name="P:Syncfusion.Windows.Forms.Schedule.AppointmentTimeChangedEventArgs.Item">
<summary>
Gets or sets the ScheduleAppointment.
</summary>
</member>
<member name="T:Syncfusion.Windows.Forms.Schedule.ShowingAppointmentFormHandler">
<summary>
A cancelable event that occurs before the Appointment form is displayed. You can swap the
the displayed form through the events arguments.
</summary>
<param name="sender">The source control.</param>
<param name="e">The <see cref="T:Syncfusion.Windows.Forms.Schedule.ShowingAppointFormEventArgs"/> that contains the event data.</param>
</member>
<member name="T:Syncfusion.Windows.Forms.Schedule.ShowingAppointFormEventArgs">
<summary>
Provides data for the <see cref="E:Syncfusion.Windows.Forms.Schedule.ScheduleControl.ShowingAppointmentForm"/> event.
</summary>
<remarks>
The ShowingAppointmentForm event gives you a chance to provide your own AppointmentForm derived class. Set Cancel = true to
tell the ScheduleGrid not to display the AppointmentForm. If Cancel = true and Handled = true, then the ScheduleGrid will
try to save the Item.
</remarks>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.ShowingAppointFormEventArgs.#ctor">
<summary>
Initializes a new instance of the <see cref="T:Syncfusion.Windows.Forms.Schedule.ShowingAppointFormEventArgs"/> class.
</summary>
</member>
<member name="P:Syncfusion.Windows.Forms.Schedule.ShowingAppointFormEventArgs.AppointmentForm">
<summary>
Gets or sets the AppointmentForm that will be displayed.
</summary>
</member>
<member name="P:Syncfusion.Windows.Forms.Schedule.ShowingAppointFormEventArgs.MetroAppointmentForm">
<summary>
Gets or sets the metroAppointmentForm that will be displayed.
</summary>
</member>
<member name="P:Syncfusion.Windows.Forms.Schedule.ShowingAppointFormEventArgs.Item">
<summary>
Gets or sets the appointment item that will display in the <see cref="T:Syncfusion.Windows.Forms.Schedule.AppointmentForm"/>.
</summary>
</member>
<member name="P:Syncfusion.Windows.Forms.Schedule.ShowingAppointFormEventArgs.ExistingItem">
<summary>
Gets a value indicating whether or not the appointment item is an existing or new item.
</summary>
</member>
<member name="P:Syncfusion.Windows.Forms.Schedule.ShowingAppointFormEventArgs.Handled">
<summary>
Gets or sets a value indicating whether the value in Item should be saved.
</summary>
<value>True if items are saved otherwise false.</value>
</member>
<member name="T:Syncfusion.Windows.Forms.Schedule.RTLGroupBox">
<summary>For internal use.</summary>
<internalonly/>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.RTLGroupBox.#ctor">
<summary>
Initializes a new instance of the <see cref="T:Syncfusion.Windows.Forms.Schedule.RTLGroupBox"/> class.
</summary>
</member>
<member name="P:Syncfusion.Windows.Forms.Schedule.RTLGroupBox.CreateParams">
<internalonly/>
<summary>
Gets the required creation parameters when the control handle is created.
</summary>
</member>
<member name="T:Syncfusion.Windows.Forms.Schedule.RTLPanel">
<summary>For internal use.</summary>
<internalonly/>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.RTLPanel.#ctor">
<summary>
Initializes a new instance of the <see cref="T:Syncfusion.Windows.Forms.Schedule.RTLPanel"/> class.
</summary>
</member>
<member name="P:Syncfusion.Windows.Forms.Schedule.RTLPanel.CreateParams">
<override/>
<summary>
Gets the required creation parameters when the control handle is created.
</summary>
</member>
<member name="T:Syncfusion.Windows.Forms.Schedule.RTLComboBoxBase">
<summary>For internal use.</summary>
<internalonly/>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.RTLComboBoxBase.#ctor">
<summary>
Initializes a new instance of the <see cref="T:Syncfusion.Windows.Forms.Schedule.RTLComboBoxBase"/> class.
</summary>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.RTLComboBoxBase.CorrectPopupLocation(System.Drawing.Point)">
<override/>
<summary>Sets the correct Popup location.</summary>
<returns>The Popup location.</returns>
</member>
<member name="T:Syncfusion.Windows.Forms.Schedule.ColorComboBox">
<summary>
Implements a dropdown list with colors associated with each list item.
</summary>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.ColorComboBox.#ctor">
<summary>
Initializes a new instance of the <see cref="T:Syncfusion.Windows.Forms.Schedule.ColorComboBox"/> class.
</summary>
</member>
<member name="P:Syncfusion.Windows.Forms.Schedule.ColorComboBox.ShowColor">
<summary>
Gets or sets a value indicating whether color splotch should be drawn in the dropdown.
</summary>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.ColorComboBox.DrawEditPortion(System.Windows.Forms.PaintEventArgs)">
<summary>
Overridden to draw color if ShowColor is true.
</summary>
<param name="e">The <see cref="T:System.Windows.Forms.PaintEventArgs"/> that contains the event data.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.ColorComboBox.CorrectPopupLocation(System.Drawing.Point)">
<override/>
<summary>Sets the correct Popup location.</summary>
<returns>Popup location.</returns>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.ColorComboBox.Grid_CellDrawn(System.Object,Syncfusion.Windows.Forms.Grid.GridDrawCellEventArgs)">
<summary>
Used to draw color block in the list of the dropdown.
</summary>
<param name="sender">The source control.</param>
<param name="e">The <see cref="T:Syncfusion.Windows.Forms.Grid.GridDrawCellEventArgs"/> that contains the event data.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.ColorComboBox.grid_DrawCell(System.Object,Syncfusion.Windows.Forms.Grid.GridDrawCellEventArgs)">
<summary>
Used to draw text offset so color block will show without overlapping.
</summary>
<param name="sender">The source control.</param>
<param name="e">The <see cref="T:Syncfusion.Windows.Forms.Grid.GridDrawCellEventArgs"/> that contains the event data.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.ColorComboBox.OnEnter(System.EventArgs)">
<override/>
<summary>
Overrides the Entering event for selecting the drop down list item.
</summary>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.ColorComboBox.OnPaint(System.Windows.Forms.PaintEventArgs)">
<override/>
<summary>
Overrides the painting event for drawing the rectangle.
</summary>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.ColorComboBox.OnLeave(System.EventArgs)">
<override/>
<summary>
Overrides the Leave event.
</summary>
</member>
<member name="T:Syncfusion.Windows.Forms.Schedule.EdgeCellModel">
<summary>
Implements the data / model part for a edge cell in ScheduleControl.
</summary>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.EdgeCellModel.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
<summary>
Initializes a new instance of the <see cref="T:Syncfusion.Windows.Forms.Schedule.EdgeCellModel"/> class.
</summary>
<param name="info">The <see cref="T:System.Runtime.Serialization.SerializationInfo"/> for serialization.</param>
<param name="context">The <see cref="T:System.Runtime.Serialization.StreamingContext"/></param>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.EdgeCellModel.#ctor(Syncfusion.Windows.Forms.Grid.GridModel)">
<summary>
Initializes a new instance of the <see cref="T:Syncfusion.Windows.Forms.Schedule.EdgeCellModel"/> class.
</summary>
<param name="grid">The <see cref="T:Syncfusion.Windows.Forms.Grid.GridModel"/>.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.EdgeCellModel.CreateRenderer(Syncfusion.Windows.Forms.Grid.GridControlBase)">
<summary>
Creates the cell renderer.
</summary>
<param name="control">The source grid control.</param>
<returns>The cell renderer for this model.</returns>
</member>
<member name="T:Syncfusion.Windows.Forms.Schedule.EdgeCellRenderer">
<summary>
Implements the renderer part of a edge cell in on the edge of the navigation calendars.
</summary>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.EdgeCellRenderer.#ctor(Syncfusion.Windows.Forms.Grid.GridControlBase,Syncfusion.Windows.Forms.Grid.GridCellModelBase)">
<summary>
Initializes a new instance of the <see cref="T:Syncfusion.Windows.Forms.Schedule.EdgeCellRenderer"/> class.
</summary>
<param name="grid">The source grid control.</param>
<param name="cellModel">The cell model for this cell renderer.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.EdgeCellRenderer.OnDraw(System.Drawing.Graphics,System.Drawing.Rectangle,System.Int32,System.Int32,Syncfusion.Windows.Forms.Grid.GridStyleInfo)">
<summary>
Overrides the Draw event for customization.
</summary>
<param name="g">Points to the device context.</param>
<param name="clientRectangle">Specifies the client rectangle. It is the cell rectangle without buttons and borders.</param>
<param name="rowIndex">Specifies the row id.</param>
<param name="colIndex">Specifies the column id.</param>
<param name="style">A reference to the style object of the cell.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.EdgeCellRenderer.GetWeekOfYearIso8601(System.DateTime)">
<summary>
Gets the Week number based on ISO 8601 standard.
</summary>
<param name="oDate">The date value to convert.</param>
<returns>the week number of the given date.</returns>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.EdgeCellRenderer.isWeekNumber(System.Int32,System.Int32)">
<summary>
Determines if the navigation calendar has week number for specified row and column.
</summary>
<param name="rowIndex">Row index of the date.</param>
<param name="colIndex">Column index of the date.</param>
<returns>The week number.</returns>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.EdgeCellRenderer.OnClick(System.Int32,System.Int32,System.Windows.Forms.MouseEventArgs)">
<summary>
Overrides the click event for navigation panel updates.
</summary>
<param name="rowIndex">Row index of the clicked date.</param>
<param name="colIndex">Column index of the clicked date.</param>
<param name="e">The <see cref="T:System.Windows.Forms.MouseEventArgs"/> that contains the event data.</param>
</member>
<member name="T:Syncfusion.Windows.Forms.Schedule.GridInCellModel">
<summary>
Implements the data / model part for the cell in the AllDay panel at the top of the calendar.
</summary>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.GridInCellModel.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
<summary>
Initializes a new instance of the <see cref="T:Syncfusion.Windows.Forms.Schedule.GridInCellModel"/> class.
</summary>
<param name="info">The <see cref="T:System.Runtime.Serialization.SerializationInfo"/> for serialization.</param>
<param name="context">The <see cref="T:System.Runtime.Serialization.StreamingContext"/></param>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.GridInCellModel.#ctor(Syncfusion.Windows.Forms.Grid.GridModel)">
<summary>
Initializes a new instance of the <see cref="T:Syncfusion.Windows.Forms.Schedule.GridInCellModel"/> class.
</summary>
<param name="grid">The <see cref="T:Syncfusion.Windows.Forms.Grid.GridModel"/>.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.GridInCellModel.CreateRenderer(Syncfusion.Windows.Forms.Grid.GridControlBase)">
<summary>
Creates the cell renderer.
</summary>
<param name="control">The source grid control.</param>
<returns>The cell renderer for this model.</returns>
</member>
<member name="T:Syncfusion.Windows.Forms.Schedule.GridInCellRenderer">
<summary>
Implements the renderer part of the cell in the AllDay panel at the top of the calendar.
</summary>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.GridInCellRenderer.#ctor(Syncfusion.Windows.Forms.Grid.GridControlBase,Syncfusion.Windows.Forms.Grid.GridCellModelBase)">
<summary>
Initializes a new instance of the <see cref="T:Syncfusion.Windows.Forms.Schedule.GridInCellRenderer"/> class.
</summary>
<param name="grid">The source grid control.</param>
<param name="cellModel">The cell model for this cell renderer.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.GridInCellRenderer.OnDraw(System.Drawing.Graphics,System.Drawing.Rectangle,System.Int32,System.Int32,Syncfusion.Windows.Forms.Grid.GridStyleInfo)">
<summary>
Overrides the Draw event for customization.
</summary>
<param name="g">Points to the device context.</param>
<param name="clientRectangle">Specifies the client rectangle. It is the cell rectangle without buttons and borders.</param>
<param name="rowIndex">Specifies the row id.</param>
<param name="colIndex">Specifies the column id.</param>
<param name="style">A reference to the style object of the cell.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.GridInCellRenderer.ProcessKeyEventArgs(System.Windows.Forms.Message@)">
<summary>
Processes a key message and generates the appropriate control events.
</summary>
<param name="m">The <see cref="T:System.Windows.Forms.Message"/> with data of the keyboard event.</param>
<returns>True if key was handled; False otherwise.</returns>
</member>
<member name="T:Syncfusion.Windows.Forms.Schedule.CellEmbeddedGrid">
<summary>
Implements the data / model part for the cell in the AllDay panel at the top of the calendar.
</summary>
</member>
<member name="P:Syncfusion.Windows.Forms.Schedule.CellEmbeddedGrid.Intensity">
<summary>
Gets or sets the intensity.
</summary>
</member>
<member name="P:Syncfusion.Windows.Forms.Schedule.CellEmbeddedGrid.LeftMargin">
<summary>
Gets or sets the left margin.
</summary>
</member>
<member name="P:Syncfusion.Windows.Forms.Schedule.CellEmbeddedGrid.TopMargin">
<summary>
Gets or sets the top margin.
</summary>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.CellEmbeddedGrid.#ctor(Syncfusion.Windows.Forms.Schedule.ScheduleControl)">
<summary>
Initializes a new instance of the <see cref="T:Syncfusion.Windows.Forms.Schedule.CellEmbeddedGrid"/> class.
</summary>
<param name="schedule">The source ScheduleControl.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.CellEmbeddedGrid.InitiateProcessKeyEventArgs(System.Windows.Forms.Message@)">
<summary>
Raises the appropriate control events.
</summary>
<param name="m">The <see cref="T:System.Windows.Forms.Message"/> with data of the keyboard event.</param>
<returns>True if key was handled; False otherwise.</returns>
</member>
<member name="T:Syncfusion.Windows.Forms.Schedule.MetroAppointmentForm">
<summary>
Displays a form allowing a user to edit information in a <see cref="T:Syncfusion.Schedule.IScheduleAppointment"/>.
</summary>
</member>
<member name="F:Syncfusion.Windows.Forms.Schedule.MetroAppointmentForm.ShowRecurDialog">
<summary>
Used to provide the advanced rendering features of the button
</summary>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.MetroAppointmentForm.#ctor">
<summary>
Initializes a new instance of the <see cref="T:Syncfusion.Windows.Forms.Schedule.MetroAppointmentForm"/> class.
</summary>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.MetroAppointmentForm.switchRTL(System.Collections.IEnumerable)">
<summary>
Switches the controls to RTL mode.
</summary>
<param name="controls">The control collections.</param>
</member>
<member name="P:Syncfusion.Windows.Forms.Schedule.MetroAppointmentForm.IgnoreScheduleRTLSettings">
<summary>
Gets or sets a value indicating whether this form will use the RTL settings from
the ScheduleControl to decide whether to mirror the form.
</summary>
</member>
<member name="P:Syncfusion.Windows.Forms.Schedule.MetroAppointmentForm.CreateParams">
<override/>
<summary>
Gets the required creation parameters when the control handle is created.
</summary>
</member>
<member name="P:Syncfusion.Windows.Forms.Schedule.MetroAppointmentForm.Font">
<summary>
Gets or sets the <see cref="T:System.Drawing.Font"/> value for AppointmentForm.
</summary>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.MetroAppointmentForm.OnLoad(System.EventArgs)">
<summary>
Overridden to conditionally display the recurring event button.
</summary>
<param name="e">The <see cref="T:System.EventArgs"/> that contains the event data.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.MetroAppointmentForm.GetIconFile(System.String)">
<summary>
Gets the form icon for specified icon name.
</summary>
<param name="bitmapName">Name of the icon.</param>
<returns>The file path.</returns>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.MetroAppointmentForm.UnhookDefaultRecurrenceDialog">
<summary>
Unsubscribe the click event that opens the default recurrence dialog.
</summary>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.MetroAppointmentForm.Dispose(System.Boolean)">
<summary>
Clean up any resources being used.
</summary>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.MetroAppointmentForm.InitializeComponent">
<summary>
Required method for Designer support - do not modify
the contents of this method with the code editor.
</summary>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.MetroAppointmentForm.SetDataProvider(Syncfusion.Schedule.IScheduleDataProvider,Syncfusion.Schedule.IScheduleAppointment,System.Int32,System.String)">
<summary>
Initializes the form using the <see cref="T:Syncfusion.Schedule.IScheduleDataProvider"/> that provides
the data for the ScheduleControl.
</summary>
<param name="provider">The IScheduleDataProvider object.</param>
<param name="item">The current item to be displayed on this form.</param>
<param name="minimumTimeSlot">The time increment used in the time dropdowns.</param>
<param name="format">The time format used in the time dropdowns.</param>
<remarks>
IScheduleDataProvider is the object that provides the data to the ScheduleControl.
This includes items like the DropLists that provide the options for many of the
properties you see in IScheduleAppointments in addition to the IScheduleAppointments themselves. This
method uses the information from the IScheduleDataProvider to populate the controls
on this form.
</remarks>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.MetroAppointmentForm.SetDataProvider(Syncfusion.Schedule.IScheduleDataProvider,Syncfusion.Schedule.IScheduleAppointment,System.Int32,System.String,Syncfusion.Windows.Forms.Schedule.ScheduleControl)">
<summary>
Sets the data provider to the scheduler
</summary>
<param name="provider">providing the schedule item data to the ScheduleControl</param>
<param name="item">Defines the individual schedule items</param>
<param name="minimumTimeSlot">Specifies the timeslot</param>
<param name="format">set the format</param>
<param name="schedule">provides the schedule functionality</param>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.MetroAppointmentForm.SetDataProvider(Syncfusion.Schedule.IScheduleDataProvider,Syncfusion.Schedule.IScheduleAppointment)">
<summary>
Initializes the form using the <see cref="T:Syncfusion.Schedule.IScheduleDataProvider"/> that provides
the data for the ScheduleControl.
</summary>
<param name="provider">The IScheduleDataProvider object.</param>
<param name="item">The current item to be displayed on this form.</param>
<remarks>
IScheduleDataProvider is the object that provides the data to the ScheduleControl.
This includes items like the DropLists that provide the options for many of the
properties you see in IScheduleAppointments in addition to the IScheduleAppointments themselves. This
method uses the information from the IScheduleDataProvider to populate the controls
on this form.
</remarks>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.MetroAppointmentForm.SetTextInRecurButton(Syncfusion.Schedule.IRecurringScheduleAppointment)">
<summary>
Sets the text for the recurring button.
</summary>
<param name="recurItem">The <see cref="T:Syncfusion.Schedule.IRecurringScheduleAppointment"/> item.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.MetroAppointmentForm.SetEndComboBoxList">
<summary>
Sets the end time combo box dropdown list items.
</summary>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.MetroAppointmentForm.DateTimeToIndex(System.DateTime)">
<summary>
Converts the date time value to the drop down list item index.
</summary>
<param name="dt">The <see href="System.DateTime"/> to convert.</param>
<returns>An index of the drop down list item.</returns>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.MetroAppointmentForm.DateTimeToIndex(System.String)">
<summary>
Converts the DateTime value to the index of the drop down.
</summary>
<param name="str">The date time value string to convert.</param>
<returns>An index of the dropdown</returns>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.MetroAppointmentForm.SaveChangesToItem">
<summary>
Moves values displayed in the form's Controls to the Item object.
</summary>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.MetroAppointmentForm.GetItemFromForm">
<summary>
Populates the item from the values in the form.
</summary>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.MetroAppointmentForm.FindSelectIndex(System.String,System.String)">
<summary>
Used to find the selected index based on the date time value.
</summary>
<param name="s">A elapsed date time string.</param>
<param name="str">Start date time string.</param>
<returns>Index of the drop down item.</returns>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.MetroAppointmentForm.FindSelectIndex(System.String,System.DateTime)">
<summary>
Used to find the selected index based on the date time value.
</summary>
<param name="s">An elapsed date time string.</param>
<param name="dateTime">Start <see cref="T:System.DateTime"/>.</param>
<returns>Index of the drop down item.</returns>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.MetroAppointmentForm.FindClosestChoice(System.String,System.DateTime)">
<summary>
Used to find the closet item in the drop down list.
</summary>
<param name="s">An elapsed date time string.</param>
<param name="dateTime">Start <see cref="T:System.DateTime"/>.</param>
<returns>Index of the closest item value based on date time value.</returns>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.MetroAppointmentForm.FindClosestChoice(System.String,System.String)">
<summary>
Used to find the closet item in the drop down list.
</summary>
<param name="s">An elapsed date time string.</param>
<param name="str">Start date time value string.</param>
<returns>Index of the closest item value based on date time value.</returns>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.MetroAppointmentForm.button1_Click(System.Object,System.EventArgs)">
<summary>
Used to save the appointment form.
</summary>
<param name="sender">The source control.</param>
<param name="e">The <see cref="T:System.EventArgs"/> that contains the event data.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.MetroAppointmentForm.button2_Click(System.Object,System.EventArgs)">
<summary>
Used to cancel the changes in Appointment form.
</summary>
<param name="sender">the source control.</param>
<param name="e">The <see cref="T:System.EventArgs"/> that contains the data.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.MetroAppointmentForm.button3_Click(System.Object,System.EventArgs)">
<summary>
Used to show the recurring form.
</summary>
<param name="sender">The source control.</param>
<param name="e">The <see cref="T:System.EventArgs"/> that contains the event data.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.MetroAppointmentForm.endComboBoxBase_DropDown(System.Object,System.EventArgs)">
<summary>
Used to populate the drop list
</summary>
<param name="sender">The source control.</param>
<param name="e">The <see cref="T:System.EventArgs"/> that contains the event data.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.MetroAppointmentForm.allDayEventCheckBox_CheckedChanged(System.Object,System.EventArgs)">
<summary>
Used to enable/disable controls dynamically
</summary>
<param name="sender">The source control.</param>
<param name="e">The <see cref="T:System.EventArgs"/> that contains the event data.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.MetroAppointmentForm.reminderCheckBox_CheckedChanged(System.Object,System.EventArgs)">
<summary>
Used to enable/disable checkbox dynamically
</summary>
<param name="sender">The source control.</param>
<param name="e">The <see cref="T:System.EventArgs"/> that contains the event data.</param>
</member>
<member name="F:Syncfusion.Windows.Forms.Schedule.MetroAppointmentForm.DisplayStrings">
<summary>
Gets or sets the various strings used in the AppointmentForm.
</summary>
<remarks>
Modifying the strings in this array will affect the display of the AppointmentForm.
You can use these strings to localize the labels that appear on the form.
</remarks>
<example>
Here are the default values of this string array.
<code lang="C#">
public static string[] DisplayStrings = new string[]
{
"Subject:", // 0
"Location:", // 1
"Show time as:", // 2
"Reminder:", // 3
"All Day Event", // 4
"End Time:", // 5
"Start Time:", // 6
"Label:", // 7
"subject", // 8
"Cancel", // 9
"Save and Close", // 10
"Enter Appointment", // 11
"Delete this appointment that spans more than one day?", // 12
"Delete a Span", // 13
"Delete Span", // 14
"Edit Recurring", // 15
"Make Recurring" // 16
};
</code>
</example>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.MetroAppointmentForm.InitStrings">
<summary>
Initializes the default strings in appointment form.
</summary>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.MetroAppointmentForm.PopulateTimeListBoxes(System.Int32,System.String)">
<summary>
Used to populate the time.
</summary>
<param name="minimumTimeSlot">The minimum time slot.</param>
<param name="format">The number format.</param>
</member>
<member name="T:Syncfusion.Windows.Forms.Schedule.NavigationCalendar">
<summary>
A class to display one or more calendars that can be used to select particular dates
or date ranges to be displayed in the ScheduleControl.
</summary>
<remarks>
This class has DateValueChanging and DateValueChanged events that let you listen
for changes in the date that determines which month is displayed in the top-most
calendar.
As you size this control, additional calendars with subsequent months will be
displayed, allowing your user to see multiple months in this navigation tool.
</remarks>
</member>
<member name="P:Syncfusion.Windows.Forms.Schedule.NavigationCalendar.appearance">
<summary>
Gets the appearance of the ScheduleControl.
</summary>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.NavigationCalendar.#ctor">
<summary>
Initializes a new instance of the <see cref="T:Syncfusion.Windows.Forms.Schedule.NavigationCalendar"/> class.
</summary>
<remarks>
NavigationCalendar is derived Panel that displays multiple calendars using
a GridControl. You can use a derived GridControl by overriding the
CreateCalendarGrid method and returning an instance of your derived
GrodControl.
</remarks>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.NavigationCalendar.calendar_CellMouseHoverLeave(System.Object,Syncfusion.Windows.Forms.Grid.GridCellMouseEventArgs)">
<summary>
Raises a event when the cell mouse hover leave.
</summary>
<param name="sender">Navigation calendar.</param>
<param name="e">A <see cref="T:Syncfusion.Windows.Forms.Grid.GridCellMouseEventArgs"/> with event data.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.NavigationCalendar.calendar_CellMouseHover(System.Object,Syncfusion.Windows.Forms.Grid.GridCellMouseEventArgs)">
<summary>
Raises a event when the cell mouse hover.
</summary>
<param name="sender">Navigation calendar</param>
<param name="e">A <see cref="T:Syncfusion.Windows.Forms.Grid.GridCellMouseEventArgs"/> with event data.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.NavigationCalendar.calendar_Paint(System.Object,System.Windows.Forms.PaintEventArgs)">
<summary>
Overrides the paint event to set the proper color on very first paint.
</summary>
<param name="sender">The source control.</param>
<param name="e">The <see cref="T:System.Windows.Forms.PaintEventArgs"/> that contains the event data.</param>
</member>
<member name="E:Syncfusion.Windows.Forms.Schedule.NavigationCalendar.DateValueChanging">
<summary>
A cancelable event raised before the <see cref="P:Syncfusion.Windows.Forms.Schedule.NavigationCalendar.DateValue"/> property changes.
</summary>
</member>
<member name="E:Syncfusion.Windows.Forms.Schedule.NavigationCalendar.DateValueChanged">
<summary>
A notification event raised after the <see cref="P:Syncfusion.Windows.Forms.Schedule.NavigationCalendar.DateValue"/> property changed.
</summary>
</member>
<member name="P:Syncfusion.Windows.Forms.Schedule.NavigationCalendar.DateValue">
<summary>
Gets or sets the date value for the navigation control.
</summary>
<remarks>
This value is used to determine the month displayed in
the topmost calendar (and hence the other calendars as
well.) Before this value changes, the cancelable DateValueChanging
is raised.
</remarks>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.NavigationCalendar.SetDateValue(System.DateTime)">
<summary>
Sets the value of the DateValue property without raising DateValueChanging
or DateValueChanged events.
</summary>
<param name="dt">The new date value.</param>
<remarks>The property DateValue is used to determine the Month that appears
in the top most calendar. All other dates in the calendars are determines by this month.
This method allows the DateValue value to change without raising the normal change events.</remarks>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.NavigationCalendar.AdjustSelectionsByMonth(System.Int32)">
<summary>
Shifts the selected dates by month offsets.
</summary>
<param name="offSet">The number of months by which the dates in SelectedDates will be adjusted.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.NavigationCalendar.OnDateValueChanging(System.DateTime,System.DateTime)">
<summary>
Raises a cancelable event before a change to DateValue occurs.
</summary>
<param name="oldValue">Existing value of DateValue</param>
<param name="newValue">Proposed value of DateValue</param>
<returns>Whether or not the change should take place.</returns>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.NavigationCalendar.OnDateValueChanged">
<summary>
Raises a notification event that the DateValue has changed.
</summary>
</member>
<member name="P:Syncfusion.Windows.Forms.Schedule.NavigationCalendar.BottomRightDate">
<summary>
Gets the date value in the bottom-rightmost active-month cell of the navigation control.
</summary>
</member>
<member name="P:Syncfusion.Windows.Forms.Schedule.NavigationCalendar.TopLeftDate">
<summary>
Gets the date value in the top-left cell of the navigation control.
</summary>
</member>
<member name="P:Syncfusion.Windows.Forms.Schedule.NavigationCalendar.Today">
<summary>
Gets or sets the DateTime value of the current day.
</summary>
<remarks>
By default, this value is set to DateTime.MinValue. When
Today is DateTime.MinValue, the Today is not marked in the
navigation calendars.
</remarks>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.NavigationCalendar.OnSizeChanged(System.EventArgs)">
<summary>
Overridden to set the position of GridControl in the panel.
</summary>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.NavigationCalendar.CreateCalendarGrid">
<summary>
Creates the new instance for calendar grid.
</summary>
<remarks>Override this method to make this control use an instance of your derived GridControl class.</remarks>
<returns>The GridControl used to display the calendars.</returns>
</member>
<member name="P:Syncfusion.Windows.Forms.Schedule.NavigationCalendar.CalenderGrid">
<summary>
Gets the GridControl that is used to display the calendars.
</summary>
<returns>The GridControl.</returns>
<remarks>
Use this method to access the GridControl used for the calendars. For examples,
you can get the date in the top-left most cell with this code.
</remarks>
<example>
The following code changes border information for cells:
<code lang="C#">
//row 2 is the first row holding dates in the display grid
DateTime dt = (DateTime) this.CalenderGrid[2,1].CellValue;
</code>
<code lang="VB">
'row 2 is the first row holding dates in the display grid
Dim dt as DateTime = Me.CalenderGrid(2,1).CellValue
</code>
</example>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.NavigationCalendar.MondayBeforeDate(System.DateTime)">
<summary>
Gets the date of the Monday prior to the passed-in date.
</summary>
<param name="dt">The date passed-in.</param>
<returns>The date of the Monday prior to the passed-in date.</returns>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.NavigationCalendar.SundayAfterDate(System.DateTime)">
<summary>
Gets the Sunday after the given date.
</summary>
<param name="dt">The date passed-in.</param>
<returns>The Sunday following the given date.</returns>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.NavigationCalendar.FirstDayOfMonth(System.DateTime)">
<summary>
Gets the date of the first day of month of the passed-in date.
</summary>
<param name="dt">The date passed-in.</param>
<returns>The first day of the month containing the passed-in date.</returns>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.NavigationCalendar.IsDateGridCell(System.Int32,System.Int32)">
<summary>
Determines whether calendar cell is date cell for specified row and column index.
</summary>
<param name="row">Row index of the date.</param>
<param name="col">Column index of the date.</param>
<returns>True if cell is date otherwise false.</returns>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.NavigationCalendar.IsInActiveDate(System.Int32,System.DateTime)">
<summary>
Determines whether date is active date for specified value.
</summary>
<param name="cal">The number of months to be added.</param>
<param name="dt">The <see cref="T:System.DateTime"/>.</param>
<returns></returns>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.NavigationCalendar.calendar_MouseDown(System.Object,System.Windows.Forms.MouseEventArgs)">
<summary>
Used to trigger button click paging done in mouse down as it is more responsive than waiting for mouse up.
</summary>
<param name="sender">The source control.</param>
<param name="e">The <see cref="T:System.Windows.Forms.MouseEventArgs"/> that contains the event data.</param>
</member>
<member name="P:Syncfusion.Windows.Forms.Schedule.NavigationCalendar.ShowWeekNumbers">
<summary>
Gets or sets a value indicating whether week numbers should be displayed to the left of the navigation calendars.
</summary>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.NavigationCalendar.calendar_RightToLeftChanged(System.Object,System.EventArgs)">
<summary>
Used to force location to be recomputed.
</summary>
<param name="sender">The source control.</param>
<param name="e">The <see cref="T:System.EventArgs"/> that contains the event data.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.NavigationCalendar.grid_CellDrawn(System.Object,Syncfusion.Windows.Forms.Grid.GridDrawCellEventArgs)">
<summary>
Used to handling the draw box around Today.
</summary>
<param name="sender">The source control.</param>
<param name="e">The <see cref="T:Syncfusion.Windows.Forms.Grid.GridDrawCellEventArgs"/> that contains the event data.</param>
</member>
<member name="P:Syncfusion.Windows.Forms.Schedule.NavigationCalendar.SelectedDates">
<summary>
Gets the DateSelections collection, holding the dates selected in the navigation calendars.
</summary>
</member>
<member name="P:Syncfusion.Windows.Forms.Schedule.NavigationCalendar.controlKeyDown">
<summary>
Gets a value indicating whether control or shift is pressed
</summary>
</member>
<member name="P:Syncfusion.Windows.Forms.Schedule.NavigationCalendar.FirstDayOfWeek">
<summary>
Gets the first of the week.
</summary>
</member>
<member name="P:Syncfusion.Windows.Forms.Schedule.NavigationCalendar.LastDayOfWeek">
<summary>
Gets the last day of the week.
</summary>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.NavigationCalendar.Model_SelectionChanged(System.Object,Syncfusion.Windows.Forms.Grid.GridSelectionChangedEventArgs)">
<summary>
Used to catch mouse up during a selection and make sure the
selected dates collection is sorted.
</summary>
<param name="sender">The source control.</param>
<param name="e">The <see cref="T:Syncfusion.Windows.Forms.Grid.GridSelectionChangedEventArgs"/> that contains the event data.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.NavigationCalendar.calendar_CellClick(System.Object,Syncfusion.Windows.Forms.Grid.GridCellClickEventArgs)">
<summary>
Used to add the selected dates.
</summary>
<param name="sender">The source control.</param>
<param name="e">The <see cref="T:Syncfusion.Windows.Forms.Grid.GridCellClickEventArgs"/> that contains the event data.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.NavigationCalendar.Model_SelectionChanging(System.Object,Syncfusion.Windows.Forms.Grid.GridSelectionChangingEventArgs)">
<summary>
Used to manage the date selection process - works with the SelectedDates collection
is an event handler for the GridControl.SelectionsChanging event
</summary>
<param name="sender">The source control.</param>
<param name="e">The <see cref="T:Syncfusion.Windows.Forms.Grid.GridSelectionChangingEventArgs"/> that contains the event data.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.NavigationCalendar.BeginUpdate">
<summary>
Suspends the drawing of this NavigationCalendar instance.
</summary>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.NavigationCalendar.EndUpdate">
<summary>
Resumes drawing of this NavigationCalendar instance.
</summary>
</member>
<member name="P:Syncfusion.Windows.Forms.Schedule.NavigationCalendar.FreezePainting">
<summary>
Gets or sets a value indicating whether painting has to be suspended.
</summary>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.NavigationCalendar.calendar_QueryCoveredRange(System.Object,Syncfusion.Windows.Forms.Grid.GridQueryCoveredRangeEventArgs)">
<summary>
Used to make the header rows (holding the month name) look like one cell
in the virtual grid displaying the calendars
</summary>
<param name="sender">The source control.</param>
<param name="e">The <see cref="T:Syncfusion.Windows.Forms.Grid.GridQueryCoveredRangeEventArgs"/> that contains the event data.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.NavigationCalendar.calendar_QueryRowHeight(System.Object,Syncfusion.Windows.Forms.Grid.GridRowColSizeEventArgs)">
<summary>
Used to control the header row heights (holding the month name) in
the virtual grid displaying the calendars
</summary>
<param name="sender">The source control.</param>
<param name="e">The <see cref="T:Syncfusion.Windows.Forms.Grid.GridRowColSizeEventArgs"/> that contains the event data.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.NavigationCalendar.calendar_QueryColWidth(System.Object,Syncfusion.Windows.Forms.Grid.GridRowColSizeEventArgs)">
<summary>
Used to control the widths of the columns in the virtual grid displaying the calendars
</summary>
<param name="sender">The source control.</param>
<param name="e">The <see cref="T:Syncfusion.Windows.Forms.Grid.GridRowColSizeEventArgs"/> that contains the event data.</param>
</member>
<member name="F:Syncfusion.Windows.Forms.Schedule.NavigationCalendar.isCurrentMonth">
<summary>
True if the current month is available in the scheduler
</summary>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.NavigationCalendar.calendar_QueryCellInfo(System.Object,Syncfusion.Windows.Forms.Grid.GridQueryCellInfoEventArgs)">
<summary>
An event handler that provides the proper cell values and styles
based on the value of e.RowIndex and e.ColIndex.
</summary>
<param name="sender">The source control.</param>
<param name="e">The <see cref="T:Syncfusion.Windows.Forms.Grid.GridQueryCellInfoEventArgs"/> that contains the event data.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.NavigationCalendar.GetFirstLettersOfDayOfWeek">
<summary>
Gets the first letter of the week of the day.
</summary>
<returns>The first letter of the week day.</returns>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.NavigationCalendar.GetCellValue(System.Int32,System.Int32)">
<summary>
Gets the date at a particular row or column in
the grid. row 2 is first row with dates.
</summary>
<param name="row">Row index of a cell.</param>
<param name="col">Column index of a cell.</param>
<returns>The date of specified cell.</returns>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.NavigationCalendar.calendar_DrawCellDisplayText(System.Object,Syncfusion.Windows.Forms.Grid.GridDrawCellDisplayTextEventArgs)">
<summary>
Event handler used to conditionally display blanks above
and below active dates in the 'interior' calendars.
</summary>
<param name="sender">The source control.</param>
<param name="e">The <see cref="T:Syncfusion.Windows.Forms.Grid.GridDrawCellDisplayTextEventArgs"/> that contains the event data.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.NavigationCalendar.BeginInit">
<summary>
Empty ISupportInitialize.BeginInit implementation
</summary>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.NavigationCalendar.EndInit">
<summary>
Empty ISupportInitialize.EndInit implementation
</summary>
</member>
<member name="T:Syncfusion.Windows.Forms.Schedule.DateValueChangingEventHandler">
<summary>
Represents a method that handles an event with <see cref="T:Syncfusion.Windows.Forms.Schedule.DateValueEventArgs"/> arguments
which is raised when a DateValue is about to change.
</summary>
<param name="sender">The source of the event.</param>
<param name="e">The <see cref="T:Syncfusion.Windows.Forms.Schedule.DateValueEventArgs"/> that contains the event data.</param>
</member>
<member name="T:Syncfusion.Windows.Forms.Schedule.DateValueChangedEventHandler">
<summary>
Represents a method that handles an event with <see cref="T:System.EventArgs"/> arguments
which is raised when a DateValue has changed.
</summary>
<param name="sender">The source of the event.</param>
<param name="e">The <see cref="T:System.EventArgs"/> that contains the event data.</param>
</member>
<member name="T:Syncfusion.Windows.Forms.Schedule.DateValueEventArgs">
<summary>
Provides data for the <see cref="E:Syncfusion.Windows.Forms.Schedule.NavigationCalendar.DateValueChanging"/> and <see cref="E:Syncfusion.Windows.Forms.Schedule.NavigationCalendar.DateValueChanged"/> event.
</summary>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.DateValueEventArgs.#ctor(System.DateTime,System.DateTime)">
<summary>
Initializes a new instance of the <see cref="T:Syncfusion.Windows.Forms.Schedule.DateValueEventArgs"/> class.
</summary>
<param name="oldDate">The value of ScheduleControl.DateValue</param>
before the change.
<param name="proposedDate">The value of ScheduleControl.DateValue
after the change if the event is not cancelled.</param>
</member>
<member name="P:Syncfusion.Windows.Forms.Schedule.DateValueEventArgs.ProposedDate">
<summary>
Gets or sets the new value for ScheduleControl.DateValue.
</summary>
</member>
<member name="P:Syncfusion.Windows.Forms.Schedule.DateValueEventArgs.OldDate">
<summary>
Gets or sets the existing value of ScheduleControl.DateValue.
</summary>
</member>
<member name="T:Syncfusion.Windows.Forms.Schedule.SelectionsChangedEventHandler">
<summary>
Represents a method that handles an <see cref="E:Syncfusion.Windows.Forms.Schedule.DateSelections.SelectionsChanged"/> event
which is raised when ScheduleControl.Selections has changed.
</summary>
<param name="sender">The source of the event.</param>
<param name="e">The <see cref="T:System.EventArgs"/> that contains the event data.</param>
</member>
<member name="T:Syncfusion.Windows.Forms.Schedule.DateSelections">
<summary>
Holds a collection of DateTime objects.
</summary>
<remarks>
This class hold the dates that are the currently selected dates for
the ScheduleControl. As your user clicks and drags in the NavigationControl
panel, an instance of this class holds the currently selected dates.
</remarks>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.DateSelections.#ctor">
<summary>
Initializes a new instance of the <see cref="T:Syncfusion.Windows.Forms.Schedule.DateSelections"/> class.
</summary>
</member>
<member name="P:Syncfusion.Windows.Forms.Schedule.DateSelections.Item(System.Int32)">
<summary>
Gets or sets the DateTime value at position i in this collection.
</summary>
<param name="i">The position used to retrieve the desired DateTime value.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.DateSelections.Add(System.Object)">
<summary>
Adds an object to the collection conditionally.
</summary>
<param name="t">The object to be added.</param>
<remarks>
This collection will only hold unique occurrences of each date.
This Add method hides the ArrayList.Add method to make
sure no duplicates are added. It also raises the
SelectionsChanged event.
</remarks>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.DateSelections.AddRange(System.Collections.ICollection)">
<summary>
Adds a collection of objects to this collection.
</summary>
<param name="timeArray">The collection to be added.</param>
<remarks>
This method raises the
SelectionsChanged event.
</remarks>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.DateSelections.Clear">
<summary>
Clears this collection.
</summary>
<remarks>
This method raises the
SelectionsChanged event.
</remarks>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.DateSelections.Remove(System.DateTime)">
<summary>
Removes a DateTime from this collection.
</summary>
<param name="dt">The date to be removed.</param>
<remarks>
This method raises the
SelectionsChanged event.
</remarks>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.DateSelections.RemoveAt(System.Int32)">
<summary>
Removes a item from this collection at the index passed inAddControlToNavigationPanel.
</summary>
<param name="index">The index of the item to be removed.</param>
<remarks>
This method raises the
SelectionsChanged event.
</remarks>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.DateSelections.RemoveRange(System.Int32,System.Int32)">
<summary>
Removes a range of items from this collection.
</summary>
<param name="index">The index of the first item to be removed.</param>
<param name="count">The number of items to be removed.</param>
<remarks>
This method raises the
SelectionsChanged event.
</remarks>
</member>
<member name="E:Syncfusion.Windows.Forms.Schedule.DateSelections.SelectionsChanged">
<summary>
Occurs when items in the collection are added or removed.
</summary>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.DateSelections.BeginUpdate">
<summary>
Suspends the collection from raising the <see cref="E:Syncfusion.Windows.Forms.Schedule.DateSelections.SelectionsChanged"/> event.
</summary>
<remarks>
You can call this method before making a series of additions/removals
from this collection. This will prevent any listener to SelectionsChanged from
seeing these changes. You can then use EndUpdate to resume the
SelectionsChanged event being raised.
</remarks>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.DateSelections.EndUpdate(System.Boolean)">
<summary>
Resumes the raising of the <see cref="E:Syncfusion.Windows.Forms.Schedule.DateSelections.SelectionsChanged"/> event.
</summary>
<param name="ignoreSelectionsChanged">False if you want the SelectionsChanged event
to be raised to alert event listeners to the current state of the collection.
</param>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.DateSelections.EndUpdate">
<summary>
Resumes the raising of the <see cref="E:Syncfusion.Windows.Forms.Schedule.DateSelections.SelectionsChanged"/> event.
</summary>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.DateSelections.OnSelectionsChanged">
<summary>
Raises the SelectionsChanged event.
</summary>
</member>
<member name="T:Syncfusion.Windows.Forms.Schedule.RecurringEditConfirmationForm">
<summary>
Displays a confirmation dialog for editing a recurring appointment.
</summary>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.RecurringEditConfirmationForm.#ctor">
<summary>
Initializes a new instance of the <see cref="T:Syncfusion.Windows.Forms.Schedule.RecurringEditConfirmationForm"/> class.
</summary>
</member>
<member name="P:Syncfusion.Windows.Forms.Schedule.RecurringEditConfirmationForm.Font">
<summary>
Gets or sets the <see cref="T:System.Drawing.Font"/> value for Form.
</summary>
</member>
<member name="P:Syncfusion.Windows.Forms.Schedule.RecurringEditConfirmationForm.IgnoreScheduleRTLSettings">
<summary>
Gets or sets a value indicating whether this form will use the RTL settings from
the ScheduleControl to decide whether to mirror the form.
</summary>
</member>
<member name="P:Syncfusion.Windows.Forms.Schedule.RecurringEditConfirmationForm.CreateParams">
<internalonly/>
<summary>
Gets the required creation parameters when the control handle is created.
</summary>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.RecurringEditConfirmationForm.button1_Click(System.Object,System.EventArgs)">
<summary>
Used to set the single appointment edit action.
</summary>
<param name="sender">The source control.</param>
<param name="e">The <see cref="T:System.EventArgs"/> that contains the event data.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.RecurringEditConfirmationForm.button2_Click(System.Object,System.EventArgs)">
<summary>
Used to set the all future appointment edit action.
</summary>
<param name="sender">The source control.</param>
<param name="e">The <see cref="T:System.EventArgs"/> that contains the event data.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.RecurringEditConfirmationForm.button3_Click(System.Object,System.EventArgs)">
<summary>
Used to set the all appointment edit action.
</summary>
<param name="sender">The source control.</param>
<param name="e">The <see cref="T:System.EventArgs"/> that contains the event data.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.RecurringEditConfirmationForm.button4_Click(System.Object,System.EventArgs)">
<summary>
Used to cancel the appoint action.
</summary>
<param name="sender">The source control.</param>
<param name="e">The <see cref="T:System.EventArgs"/> that contains the event data.</param>
</member>
<member name="P:Syncfusion.Windows.Forms.Schedule.RecurringEditConfirmationForm.Result">
<summary>
Gets the edit action specified by the user in this dialog.
</summary>
<remarks>This is the return value to indicate what choice the user made
in the dialog.</remarks>
</member>
<member name="F:Syncfusion.Windows.Forms.Schedule.RecurringEditConfirmationForm.components">
<summary>
Required designer variable.
</summary>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.RecurringEditConfirmationForm.Dispose(System.Boolean)">
<summary>
Clean up any resources being used.
</summary>
<param name="disposing">True if managed resources should be disposed; otherwise, false.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.RecurringEditConfirmationForm.InitializeComponent">
<summary>
Required method for Designer support - do not modify
the contents of this method with the code editor.
</summary>
</member>
<member name="F:Syncfusion.Windows.Forms.Schedule.RecurringEditConfirmationForm.DisplayStrings">
<summary>
Holds various strings used in the AppointmentForm.
</summary>
<remarks>
Modifying the strings in this array will affect the display of the AppointmentForm.
You can use these strings to localize the labels that appear on the form.
</remarks>
<example>
Here are the default values of this string array.
<code lang="C#">
public static string[] DisplayStrings = new string[]
{
"This appointment is part of a recurring series of appointments.", // 0
"Change this single appointment.", // 1
"Change this appointment and all future appointments.", // 2
"Change all appointments.", // 3
"Cancel", // 4
"Recurring Edit Confirmation" // 5
};
</code>
</example>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.RecurringEditConfirmationForm.InitStrings">
<summary>
Initializes the default strings in recurring edit form.
</summary>
</member>
<member name="T:Syncfusion.Windows.Forms.Schedule.RecurringForm">
<summary>
Form which displays the recurring appointment information.
</summary>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.RecurringForm.#ctor">
<summary>
Initializes a new instance of the <see cref="T:Syncfusion.Windows.Forms.Schedule.RecurringForm"/> class.
</summary>
</member>
<member name="P:Syncfusion.Windows.Forms.Schedule.RecurringForm.Font">
<summary>
Gets or sets the <see cref="T:System.Drawing.Font"/> value for Form.
</summary>
</member>
<member name="P:Syncfusion.Windows.Forms.Schedule.RecurringForm.IsRecurringOnOverride">
<summary>
Gets or sets a value indicating whether recurring has to be overridden.
</summary>
</member>
<member name="P:Syncfusion.Windows.Forms.Schedule.RecurringForm.SecondsinAppointment">
<summary>
Gets or sets a value indicating whether appointment has to support seconds.
</summary>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.RecurringForm.switchRTL(System.Collections.IEnumerable)">
<summary>
Switches the controls to RTL mode.
</summary>
<param name="controls">The control collections.</param>
</member>
<member name="P:Syncfusion.Windows.Forms.Schedule.RecurringForm.IgnoreScheduleRTLSettings">
<summary>
Gets or sets a value indicating whether this form will use the RTL settings from
the ScheduleControl to decide whether to mirror the form.
</summary>
</member>
<member name="P:Syncfusion.Windows.Forms.Schedule.RecurringForm.CreateParams">
<override/>
<summary>
Gets the required creation parameters when the control handle is created.
</summary>
</member>
<member name="F:Syncfusion.Windows.Forms.Schedule.RecurringForm.components">
<summary>
Required designer variable.
</summary>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.RecurringForm.Dispose(System.Boolean)">
<summary>
Clean up any resources being used.
</summary>
<param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.RecurringForm.InitializeComponent">
<summary>
Required method for Designer support - do not modify
the contents of this method with the code editor.
</summary>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.RecurringForm.RuleToLocalSettings(System.String)">
<summary>
Sets the local settings for specified rule.
</summary>
<param name="rule">The rule to set the local settings.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.RecurringForm.CheckWeekDays(System.Boolean,System.String,System.String@)">
<summary>
Check the week day for specified day string.
</summary>
<param name="check">Indicates the checked status of the week day.</param>
<param name="day">The day value to convert.</param>
<param name="s">Value to convert.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.RecurringForm.LocalSettingsToRuleString">
<summary>
Converts the local settings to rule string.
</summary>
<returns>Rule string.</returns>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.RecurringForm.LocalSettingsToRuleString(System.Boolean)">
<summary>
Converts the local settings to rule string.
</summary>
<param name="includeDates">Indicates whether conversion has to include the dates.</param>
<returns>Rule string.</returns>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.RecurringForm.UpdateDisplayAfterChange">
<summary>
Updates the display for every change.
</summary>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.RecurringForm.textBox_KeyPressNumericOnly(System.Object,System.Windows.Forms.KeyPressEventArgs)">
<summary>
Used to restrict all textboxes for supporting digits only.
</summary>
<param name="sender">The source control.</param>
<param name="e">The <see cref="T:System.Windows.Forms.KeyPressEventArgs"/> that contains the event data.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.RecurringForm.GetIntegerFromTextBox(System.Windows.Forms.TextBox)">
<summary>
Gets the integer value from textbox.
</summary>
<param name="tb">The <see cref="T:System.Windows.Forms.TextBox"/>.</param>
<returns>The integer value of the textbox.</returns>
</member>
<member name="P:Syncfusion.Windows.Forms.Schedule.RecurringForm.MonthTokens">
<summary>
Gets or sets the month tokens.
</summary>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.RecurringForm.radioButton5_Click(System.Object,System.EventArgs)">
<summary>
Used to perform the showing and hiding the panels.
</summary>
<param name="sender">The source control.</param>
<param name="e">The <see cref="T:System.EventArgs"/> that contains the event data.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.RecurringForm.ShowPanel">
<summary>
Shows the panel.
</summary>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.RecurringForm.HidePanel">
<summary>
Hides the panel.
</summary>
</member>
<member name="T:Syncfusion.Windows.Forms.Schedule.RecurringForm.TimeButtons">
<summary>
Defines the constants that specify the time format of the button.
</summary>
</member>
<member name="F:Syncfusion.Windows.Forms.Schedule.RecurringForm.TimeButtons.SEC">
<summary>
Every day.
</summary>
</member>
<member name="F:Syncfusion.Windows.Forms.Schedule.RecurringForm.TimeButtons.MIN">
<summary>
Every week day.
</summary>
</member>
<member name="F:Syncfusion.Windows.Forms.Schedule.RecurringForm.TimeButtons.HR">
<summary>
Every week end.
</summary>
</member>
<member name="T:Syncfusion.Windows.Forms.Schedule.RecurringForm.DayButtons">
<summary>
Defines the constants that specify the day recurrence format of the button.
</summary>
</member>
<member name="F:Syncfusion.Windows.Forms.Schedule.RecurringForm.DayButtons.every">
<summary>
Every day.
</summary>
</member>
<member name="F:Syncfusion.Windows.Forms.Schedule.RecurringForm.DayButtons.everyWeekday">
<summary>
Every week day.
</summary>
</member>
<member name="F:Syncfusion.Windows.Forms.Schedule.RecurringForm.DayButtons.everyWeekEnd">
<summary>
Every week end.
</summary>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.RecurringForm.dayPanelButtons_Click(System.Object,System.EventArgs)">
<summary>
Used to set the day recurrence settings.
</summary>
<param name="sender">The source control.</param>
<param name="e">The <see cref="T:System.EventArgs"/> that contains the event data.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.RecurringForm.textBox1_Validating(System.Object,System.ComponentModel.CancelEventArgs)">
<summary>
Used to set the day.
</summary>
<param name="sender">The source control.</param>
<param name="e">The <see cref="T:System.ComponentModel.CancelEventArgs"/> that contains the event data.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.RecurringForm.textBox1_Enter(System.Object,System.EventArgs)">
<summary>
Used to set the day button status.
</summary>
<param name="sender">The source control.</param>
<param name="e">The <see cref="T:System.EventArgs"/> that contains the event data.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.RecurringForm.textBox2_Validating(System.Object,System.ComponentModel.CancelEventArgs)">
<summary>
Used to set the week.
</summary>
<param name="sender">The source control.</param>
<param name="e">The <see cref="T:System.ComponentModel.CancelEventArgs"/> that contains the event data.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.RecurringForm.checkBoxWeek_Click(System.Object,System.EventArgs)">
<summary>
Used to update the changes.
</summary>
<param name="sender">The source control.</param>
<param name="e">The <see cref="T:System.EventArgs"/> that contains the event data.</param>
</member>
<member name="T:Syncfusion.Windows.Forms.Schedule.RecurringForm.MonthButtons">
<summary>
Defines the constants that specify the month recurrence format.
</summary>
</member>
<member name="F:Syncfusion.Windows.Forms.Schedule.RecurringForm.MonthButtons.Day">
<summary>
The day button.
</summary>
</member>
<member name="F:Syncfusion.Windows.Forms.Schedule.RecurringForm.MonthButtons.DayOfWeek">
<summary>
Day of the week button.
</summary>
</member>
<member name="T:Syncfusion.Windows.Forms.Schedule.RecurringForm.PositionCount">
<summary>
Defines the constants that specify the positions.
</summary>
</member>
<member name="F:Syncfusion.Windows.Forms.Schedule.RecurringForm.PositionCount.first">
<summary>
First position.
</summary>
</member>
<member name="F:Syncfusion.Windows.Forms.Schedule.RecurringForm.PositionCount.second">
<summary>
Second position.
</summary>
</member>
<member name="F:Syncfusion.Windows.Forms.Schedule.RecurringForm.PositionCount.third">
<summary>
Third position.
</summary>
</member>
<member name="F:Syncfusion.Windows.Forms.Schedule.RecurringForm.PositionCount.fourth">
<summary>
Fourth position.
</summary>
</member>
<member name="T:Syncfusion.Windows.Forms.Schedule.RecurringForm.MonthDayOfWeek">
<summary>
Defines the constants that specify the day in a week.
</summary>
</member>
<member name="F:Syncfusion.Windows.Forms.Schedule.RecurringForm.MonthDayOfWeek.MON">
<summary>
Monday of the week.
</summary>
</member>
<member name="F:Syncfusion.Windows.Forms.Schedule.RecurringForm.MonthDayOfWeek.TUE">
<summary>
Tuesday of the week.
</summary>
</member>
<member name="F:Syncfusion.Windows.Forms.Schedule.RecurringForm.MonthDayOfWeek.WED">
<summary>
Wednesday of the week.
</summary>
</member>
<member name="F:Syncfusion.Windows.Forms.Schedule.RecurringForm.MonthDayOfWeek.THU">
<summary>
Thursday of the week.
</summary>
</member>
<member name="F:Syncfusion.Windows.Forms.Schedule.RecurringForm.MonthDayOfWeek.FRI">
<summary>
Friday of the week.
</summary>
</member>
<member name="F:Syncfusion.Windows.Forms.Schedule.RecurringForm.MonthDayOfWeek.SAT">
<summary>
Saturday of the week.
</summary>
</member>
<member name="F:Syncfusion.Windows.Forms.Schedule.RecurringForm.MonthDayOfWeek.SUN">
<summary>
Sunday of the week.
</summary>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.RecurringForm.monthPanelButtons_Click(System.Object,System.EventArgs)">
<summary>
Used to set the month button.
</summary>
<param name="sender">The source control.</param>
<param name="e">The <see cref="T:System.EventArgs"/> that contains the event data.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.RecurringForm.textBox3_Validating(System.Object,System.ComponentModel.CancelEventArgs)">
<summary>
Used to set the day number.
</summary>
<param name="sender">The source control.</param>
<param name="e">The <see cref="T:System.ComponentModel.CancelEventArgs"/> that contains the event data.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.RecurringForm.textBox4_Validating(System.Object,System.ComponentModel.CancelEventArgs)">
<summary>
Used to set the month number.
</summary>
<param name="sender">The source control.</param>
<param name="e">The <see cref="T:System.ComponentModel.CancelEventArgs"/> that contains the event data.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.RecurringForm.comboBox1_SelectedIndexChanged(System.Object,System.EventArgs)">
<summary>
Used to set the first value of the month.
</summary>
<param name="sender">The source control.</param>
<param name="e">The <see cref="T:System.EventArgs"/> that contains the event data.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.RecurringForm.comboBox2_SelectedIndexChanged(System.Object,System.EventArgs)">
<summary>
Used to set day value of a week.
</summary>
<param name="sender">The source control.</param>
<param name="e">The <see cref="T:System.EventArgs"/> that contains the event data.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.RecurringForm.textBox5_Validating(System.Object,System.ComponentModel.CancelEventArgs)">
<summary>
Used to set the every month.
</summary>
<param name="sender">The source control.</param>
<param name="e">The <see cref="T:System.ComponentModel.CancelEventArgs"/> that contains the event data.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.RecurringForm.textBox3_Enter(System.Object,System.EventArgs)">
<summary>
Used to set the month button status to day.
</summary>
<param name="sender">The source control.</param>
<param name="e">The <see cref="T:System.EventArgs"/> that contains the event data.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.RecurringForm.comboBox1_Enter(System.Object,System.EventArgs)">
<summary>
Used to set the month button status to day of week.
</summary>
<param name="sender">The source control.</param>
<param name="e">The <see cref="T:System.EventArgs"/> that contains the event data.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.RecurringForm.quarterPanelButtons_Click(System.Object,System.EventArgs)">
<summary>
Used to set the quarter button status to day of week.
</summary>
<param name="sender">The source control.</param>
<param name="e">The <see cref="T:System.EventArgs"/> that contains the event data.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.RecurringForm.textBox8_Validating(System.Object,System.ComponentModel.CancelEventArgs)">
<summary>
Used to set the number of the quarter day.
</summary>
<param name="sender">The source control.</param>
<param name="e">The <see cref="T:System.ComponentModel.CancelEventArgs"/> that contains the event data.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.RecurringForm.comboBox5_SelectedIndexChanged(System.Object,System.EventArgs)">
<summary>
Used to set the quarter month number.
</summary>
<param name="sender">The source control.</param>
<param name="e">The <see cref="T:System.EventArgs"/> that contains the event data.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.RecurringForm.comboBox4_SelectedIndexChanged(System.Object,System.EventArgs)">
<summary>
Used to set the first value of quarter.
</summary>
<param name="sender">The source control.</param>
<param name="e">The <see cref="T:System.EventArgs"/> that contains the event data.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.RecurringForm.comboBox3_SelectedIndexChanged(System.Object,System.EventArgs)">
<summary>
Used to set the quarter day of week value.
</summary>
<param name="sender">The source control.</param>
<param name="e">The <see cref="T:System.EventArgs"/> that contains the event data.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.RecurringForm.comboBox6_SelectedIndexChanged(System.Object,System.EventArgs)">
<summary>
Used to set the quarter month value.
</summary>
<param name="sender">The source control.</param>
<param name="e">The <see cref="T:System.EventArgs"/> that contains the event data.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.RecurringForm.textBox8_Enter(System.Object,System.EventArgs)">
<summary>
Used to set the quarter button status to day.
</summary>
<param name="sender">The source control.</param>
<param name="e">The <see cref="T:System.EventArgs"/> that contains the event data.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.RecurringForm.comboBox4_Enter(System.Object,System.EventArgs)">
<summary>
Used to set the quarter button status to day of week.
</summary>
<param name="sender">The source control.</param>
<param name="e">The <see cref="T:System.EventArgs"/> that contains the event data.</param>
</member>
<member name="T:Syncfusion.Windows.Forms.Schedule.RecurringForm.Months">
<summary>
Defines the constants that specify the months.
</summary>
</member>
<member name="F:Syncfusion.Windows.Forms.Schedule.RecurringForm.Months.January">
<summary>
The month of January.
</summary>
</member>
<member name="F:Syncfusion.Windows.Forms.Schedule.RecurringForm.Months.February">
<summary>
The month of February.
</summary>
</member>
<member name="F:Syncfusion.Windows.Forms.Schedule.RecurringForm.Months.March">
<summary>
The month of March.
</summary>
</member>
<member name="F:Syncfusion.Windows.Forms.Schedule.RecurringForm.Months.April">
<summary>
The month of April.
</summary>
</member>
<member name="F:Syncfusion.Windows.Forms.Schedule.RecurringForm.Months.May">
<summary>
The month of May.
</summary>
</member>
<member name="F:Syncfusion.Windows.Forms.Schedule.RecurringForm.Months.June">
<summary>
The month of June.
</summary>
</member>
<member name="F:Syncfusion.Windows.Forms.Schedule.RecurringForm.Months.July">
<summary>
The month of July.
</summary>
</member>
<member name="F:Syncfusion.Windows.Forms.Schedule.RecurringForm.Months.August">
<summary>
The month of August.
</summary>
</member>
<member name="F:Syncfusion.Windows.Forms.Schedule.RecurringForm.Months.September">
<summary>
The month of September.
</summary>
</member>
<member name="F:Syncfusion.Windows.Forms.Schedule.RecurringForm.Months.October">
<summary>
The month of October.
</summary>
</member>
<member name="F:Syncfusion.Windows.Forms.Schedule.RecurringForm.Months.November">
<summary>
The month of November.
</summary>
</member>
<member name="F:Syncfusion.Windows.Forms.Schedule.RecurringForm.Months.December">
<summary>
The month of December.
</summary>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.RecurringForm.YearPanelButtons_Click(System.Object,System.EventArgs)">
<summary>
Used to set the year button status to day of week or day.
</summary>
<param name="sender">The source control.</param>
<param name="e">The <see cref="T:System.EventArgs"/> that contains the event data.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.RecurringForm.textBox6_Validating(System.Object,System.ComponentModel.CancelEventArgs)">
<summary>
Used to set the day number of the year.
</summary>
<param name="sender">The source control.</param>
<param name="e">The <see cref="T:System.ComponentModel.CancelEventArgs"/> that contains the event data.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.RecurringForm.comboBox8_SelectedIndexChanged(System.Object,System.EventArgs)">
<summary>
Used to set the month number.
</summary>
<param name="sender">The source control.</param>
<param name="e">The <see cref="T:System.EventArgs"/> that contains the event data.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.RecurringForm.comboBox10_SelectedIndexChanged(System.Object,System.EventArgs)">
<summary>
Used to set the first value of the year.
</summary>
<param name="sender">The source control.</param>
<param name="e">The <see cref="T:System.EventArgs"/> that contains the event data.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.RecurringForm.comboBox9_SelectedIndexChanged(System.Object,System.EventArgs)">
<summary>
Used to set the week value of the day in year.
</summary>
<param name="sender">The source control.</param>
<param name="e">The <see cref="T:System.EventArgs"/> that contains the event data.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.RecurringForm.comboBox7_SelectedIndexChanged(System.Object,System.EventArgs)">
<summary>
Used to set the month value of the year.
</summary>
<param name="sender">The source control.</param>
<param name="e">The <see cref="T:System.EventArgs"/> that contains the event data.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.RecurringForm.textBox6_Enter(System.Object,System.EventArgs)">
<summary>
Used to set the year button status to day.
</summary>
<param name="sender">The source control.</param>
<param name="e">The <see cref="T:System.EventArgs"/> that contains the event data.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.RecurringForm.comboBox10_Enter(System.Object,System.EventArgs)">
<summary>
Used to set the year button to DayOfWeek.
</summary>
<param name="sender">The source control.</param>
<param name="e">The <see cref="T:System.EventArgs"/> that contains the event data.</param>
</member>
<member name="T:Syncfusion.Windows.Forms.Schedule.RecurringForm.RangeButtons">
<summary>
Defines the constants that specify the recurrence ranges.
</summary>
</member>
<member name="F:Syncfusion.Windows.Forms.Schedule.RecurringForm.RangeButtons.NoEnd">
<summary>
No end for the recurrence.
</summary>
</member>
<member name="F:Syncfusion.Windows.Forms.Schedule.RecurringForm.RangeButtons.EndAfter">
<summary>
End after the specified date.
</summary>
</member>
<member name="F:Syncfusion.Windows.Forms.Schedule.RecurringForm.RangeButtons.EndBy">
<summary>
End by the date specified.
</summary>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.RecurringForm.rangeSelectionButton_Click(System.Object,System.EventArgs)">
<summary>
Used to set the selection range.
</summary>
<param name="sender">The source control.</param>
<param name="e">The <see cref="T:System.EventArgs"/> that contains the event data.</param>
</member>
<member name="P:Syncfusion.Windows.Forms.Schedule.RecurringForm.RecurrenceCount">
<summary>
Gets or sets the recurrence count.
</summary>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.RecurringForm.dateTimePicker1_ValueChanged(System.Object,System.EventArgs)">
<summary>
Used to set the start date.
</summary>
<param name="sender">The source control.</param>
<param name="e">The <see cref="T:System.EventArgs"/> that contains the event data.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.RecurringForm.dateTimePicker2_ValueChanged(System.Object,System.EventArgs)">
<summary>
Used to set an end date.
</summary>
<param name="sender">The source control.</param>
<param name="e">The <see cref="T:System.EventArgs"/> that contains the event data.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.RecurringForm.textBox7_Validating(System.Object,System.ComponentModel.CancelEventArgs)">
<summary>
Used to set the range selection to end after.
</summary>
<param name="sender">The source control.</param>
<param name="e">The <see cref="T:System.ComponentModel.CancelEventArgs"/> that contains the event data.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.RecurringForm.textBox7_Enter(System.Object,System.EventArgs)">
<summary>
Used to set the range selection to end after.
</summary>
<param name="sender">The source control.</param>
<param name="e">The <see cref="T:System.EventArgs"/> that contains the event data.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.RecurringForm.dateTimePicker2_Enter(System.Object,System.EventArgs)">
<summary>
Used to set the range selection to end after.
</summary>
<param name="sender">The source control.</param>
<param name="e">The <see cref="T:System.EventArgs"/> that contains the event data.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.RecurringForm.button1_Click(System.Object,System.EventArgs)">
<summary>
Used to save the changes in recurring form.
</summary>
<param name="sender">The source control.</param>
<param name="e">The <see cref="T:System.EventArgs"/> that contains the event data.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.RecurringForm.button3_Click(System.Object,System.EventArgs)">
<summary>
Used to cancel the changes in recurring form.
</summary>
<param name="sender">The source control.</param>
<param name="e">The <see cref="T:System.EventArgs"/> that contains the event data.</param>
</member>
<member name="F:Syncfusion.Windows.Forms.Schedule.RecurringForm.DisplayStrings">
<summary>
Holds various strings used in the RecurringForm.
</summary>
<remarks>
Modifying the strings in this array will affect the display of the RecurringForm.
You can use these strings to localize the labels that appear on the form.
Please note that some of the strings used in this form represent tokens and
parseable elements which cannot be localized.
</remarks>
<example>
Here are the default values of this string array.
<code lang="C#">
public static string[] DisplayStrings = new string[]
{
"Confirm the deletion of all occurrences?", // 0
"Delete Confirmation", // 1
"Recurrence Pattern", // 2
"Recurrence Range", // 3
"OK", // 4
"Cancel", // 5
"Delete Recurring Event", // 6
"Appointment Recurrence", // 7
"Recur every", // 8
"week(s)", // 9
"of", // 10
"month", // 11
"of the", // 12
"month(s)", // 13
"of every ", // 14
"day(s)", // 15
"Start:", // 16
"recurrences" // 17
};
</code>
</example>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.RecurringForm.InitStrings">
<summary>
Initializes the default strings in recurring edit form.
</summary>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.RecurringForm.loadComboBoxItems">
<summary>
Initializes the ComboBox items in recurring edit form.
</summary>
</member>
<member name="T:Syncfusion.Windows.Forms.Schedule.ScheduleControl">
<summary>
Represents a control that provides the basic scheduling functionality.
It serves as a wrapper class for a ScheduleGrid and a NavigationCalendar that work together to provide
this scheduling functionality.
</summary>
<remarks>
To use the ScheduleControl, place it on Form or UserControl, and then set its <see cref="P:Syncfusion.Windows.Forms.Schedule.ScheduleControl.DataSource"/>
property to an object that implements <see cref="T:Syncfusion.Schedule.IScheduleDataProvider"/> that provides a data store
for the schedule items that you want to use in the ScheduleControl. If you do not set ScheduleControl.DataSource,
then an IScheduleDataProvider implementation based on ArrayLists will be used. See
<see cref="T:Syncfusion.Schedule.ArrayListDataProvider"/> for more information.
</remarks>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.ScheduleControl.#ctor">
<summary>
Initializes a new instance of the <see cref="T:Syncfusion.Windows.Forms.Schedule.ScheduleControl"/> class.
</summary>
</member>
<member name="P:Syncfusion.Windows.Forms.Schedule.ScheduleControl.Calendar">
<summary>
Gets the <see cref="T:Syncfusion.Windows.Forms.Schedule.NavigationCalendar"/> associated with <see cref="T:Syncfusion.Windows.Forms.Schedule.ScheduleControl"/>.
</summary>
<remarks>
The NavigationCalendar is a derive GridControl that displays
one or more Calendars that let the user select dates to be displayed
in the ScheduleControl.
If you want to use a derived NavigationCalendar, then you can do so
by overriding CreateNavigationCalendar and returning an instance of
your derived NavigationCalendar.
</remarks>
</member>
<member name="P:Syncfusion.Windows.Forms.Schedule.ScheduleControl.AllowSecondsInAppointment">
<summary>
Gets or sets enable seconds support for schedule appointment.
</summary>
</member>
<member name="P:Syncfusion.Windows.Forms.Schedule.ScheduleControl.CaptionPanel">
<summary>
Gets the Panel, holding the caption above the Calendar. This panel may hold two navigation buttons and <see cref="P:Syncfusion.Windows.Forms.Schedule.ScheduleControl.HeaderLabel"/>.
</summary>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.ScheduleControl.CreateNavigationCalendar">
<summary>
Override this method to have a derived ScheduleControl use a
derived NavigationCalendar.
</summary>
<returns>A NavigationCalendar object that this ScheduleControl
will use as its Calendar object.
</returns>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.ScheduleControl.OnRightToLeftChanged(System.EventArgs)">
<override/>
<summary>
Overridden to switch the right to left view.
</summary>
<param name="e">The <see cref="T:System.EventArgs"/> that contains the event data.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.ScheduleControl.Dispose(System.Boolean)">
<summary>
Clean up any resources being used.
</summary>
<param name="disposing">Indicates whether components has to be disposed.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.ScheduleControl.InitializeComponent">
<summary>
Required method for Designer support - do not modify
the contents of this method with the code editor.
</summary>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.ScheduleControl.AddControlToNavigationPanel(System.Windows.Forms.Control)">
<summary>
Adds a Control to the NavigationPanel underneath the NavigationCalendar.
</summary>
<param name="c">The Control to be added.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.ScheduleControl.RemoveControlFromNavigationPanel(System.Windows.Forms.Control)">
<summary>
Removes a Control to the NavigationPanel underneath the NavigationCalendar.
</summary>
<param name="c">The Control to be removed.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.ScheduleControl.SetNavigationPanelPosition(Syncfusion.Schedule.CalendarNavigationPanelPosition)">
<summary>
Sets the position of the NavigationPanel.
</summary>
<param name="newPosition">Specifies the left or right position of the NavigationPanel,
or whether the NavigationPanel is hidden.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.ScheduleControl.GetScheduleHost">
<summary>
Gets the ScheduleGrid that holds the schedule.
</summary>
<returns>A ScheduleGrid.</returns>
<remarks>
The <see cref="T:Syncfusion.Windows.Forms.Schedule.ScheduleGrid"/> is a GridControl derived class that displays the
IScheduleAppointments. The appearance and layout of this grid varies with the
<see cref="T:Syncfusion.Windows.Forms.Schedule.ScheduleViewType"/>.
</remarks>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.ScheduleControl.CreateScheduleGrid(Syncfusion.Windows.Forms.Schedule.NavigationCalendar,Syncfusion.Windows.Forms.Schedule.ScheduleControl,System.DateTime)">
<summary>
Creates the ScheduleGrid used by this ScheduleControl.
</summary>
<param name="calendar">The NavigationCalendar to be used by this ScheduleControl.</param>
<param name="schedule">The ScheduleControl that is the parent of this ScheduleGrid.</param>
<param name="initialDate">The initial DateTime to be displayed.</param>
<returns>ScheduleGrid used by this ScheduleControl.</returns>
<remarks>
Override this method if you want your ScheduleControl to use a derived ScheduleGrid.
</remarks>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.ScheduleControl.GetItemAtPoint(System.Drawing.Point,Syncfusion.Schedule.ItemHitType@)">
<summary>
Gets the information about the IScheduleAppointment if any under the point.
</summary>
<param name="pt">The Point to be tested.</param>
<param name="hit">Returns information regarding the the location of the point.</param>
<returns>The IScheduleAppointment under the point. Returns null if no item under the point.</returns>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.ScheduleControl.ResetProvider(Syncfusion.Windows.Forms.Schedule.ScheduleViewType)">
<summary>
Resets any actively displayed schedules and
re-displays them using the passed in schedule type.
</summary>
<param name="t">The ScheduleViewType that will be used to display
the current schedule items.
</param>
<remarks>Use this method to change the current ScheduleViewType
to a new ScheduleViewType.</remarks>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.ScheduleControl.AddSpanAppointment(Syncfusion.Schedule.IRecurringScheduleAppointment,Syncfusion.Schedule.IRecurringScheduleDataProvider)">
<summary>
Adds a multiday span appointment to a dataProvider.
</summary>
<param name="item">Holds the appointment to be added.</param>
<param name="dataProvider">The DataProvider.</param>
<remarks>
Multiday appointments are not simply single entries in the appointment list. This method takes the
information in an <see cref="T:Syncfusion.Schedule.IRecurringScheduleAppointment"/> and adds it to the DataProvider as
a span appointment covering more than a single day. The process properly populates the
IRecurringScheduleAppointment.DateList collection.
</remarks>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.ScheduleControl.AddSpanAppointment(Syncfusion.Schedule.IRecurringScheduleAppointment,Syncfusion.Schedule.IRecurringScheduleDataProvider,System.Int32,System.Int32)">
<summary>
Adds a multiday span appointment to a dataProvider.
</summary>
<param name="item">Holds the appointment to be added.</param>
<param name="dataProvider">The DataProvider.</param>
<param name="startHour">The cutoff value for the start Hour of the daily appointments.</param>
<param name="endHour">The cutoff value for the end Hour of the daily appointments. Use 0 for midnight.</param>
<remarks>
Multiday appointments are not simply single entries in the appointment list. This method takes the
information in an <see cref="T:Syncfusion.Schedule.IRecurringScheduleAppointment"/> and adds it to the DataProvider as
a span appointment covering more than a single day. The process properly populates the
IRecurringScheduleAppointment.DateList collection.
The startHour and endHour can be used to limit the daily time span for the appointment slots. For example, the
code below will limit the appointment to the PrimeTime hours as set in a ScheduleControls.Appearance object. To
have no restrictions on the time slots, pass zeros for both startHour and endHour.
</remarks>
<example>
<code lang="C#">
ArrayListAppointment item = new ArrayListAppointment();
item.Subject = "Blue Production Run";
item.StartTime = new DateTime(2008, 11, 12, 9, 0, 0);
item.EndTime = new DateTime(2008, 11, 14, 10, 30, 0);
item.AllDay = false;
item.LabelValue = 3;
int startHour = ScheduleGrid.SpanOnlyPrimeTime ? scheduleControl1.Appearance.PrimeTimeStart : 0;
int endHour = ScheduleGrid.SpanOnlyPrimeTime ? scheduleControl1.Appearance.PrimeTimeEnd : 0;
ScheduleControl.AddSpanAppointment(item, myArrayListDataProvider, startHour, endHour);
</code>
</example>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.ScheduleControl.SetupChildControls">
<summary>
Sets the child controls in shedule control.
</summary>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.ScheduleControl.SpanOnlyPrimeTimeChanged">
<summary>
Changes the currently loaded span appointments start/end time
with respect to SpanOnlyPrimeTime property at runtime.
</summary>
</member>
<member name="E:Syncfusion.Windows.Forms.Schedule.ScheduleControl.AppointmentTimeChanged">
<summary>
Occurs whenever schedule appointment time is changed.
</summary>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.ScheduleControl.RaiseAppointmentTimeChanged(Syncfusion.Windows.Forms.Schedule.AppointmentTimeChangedEventArgs)">
<summary>
Raises the <see cref="E:Syncfusion.Windows.Forms.Schedule.ScheduleControl.AppointmentTimeChanged"/> event.
</summary>
<param name="e">An <see cref="E:Syncfusion.Windows.Forms.Schedule.ScheduleControl.AppointmentTimeChanged"/> that contains the event data.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.ScheduleControl.OnAppointmentTimeChanged(Syncfusion.Windows.Forms.Schedule.AppointmentTimeChangedEventArgs)">
<summary>
Raises the <see cref="E:Syncfusion.Windows.Forms.Schedule.ScheduleControl.AppointmentTimeChanged"/> event.
</summary>
<param name="e">The <see cref="E:Syncfusion.Windows.Forms.Schedule.ScheduleControl.AppointmentTimeChanged"/> that contains the event data.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.ScheduleControl.secondsTimer_Tick(System.Object,System.EventArgs)">
<summary>
Used to handle the seconds timer.
</summary>
<param name="sender">The source control.</param>
<param name="e">The <see cref="T:System.EventArgs"/> that contains the event data.</param>
</member>
<member name="E:Syncfusion.Windows.Forms.Schedule.ScheduleControl.ShowingAppointmentForm">
<summary>
A cancelable event that occurs before the Appointment form is displayed. You can swap the
the displayed form through the events arguments.
</summary>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.ScheduleControl.RaiseShowingAppointmentForm(Syncfusion.Windows.Forms.Schedule.ShowingAppointFormEventArgs)">
<summary>
Raises the <see cref="E:Syncfusion.Windows.Forms.Schedule.ScheduleControl.ShowingAppointmentForm"/> event.
</summary>
<param name="e">The <see cref="T:Syncfusion.Windows.Forms.Schedule.ShowingAppointFormEventArgs"/> that contains the event data.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.ScheduleControl.OnShowingAppointmentForm(Syncfusion.Windows.Forms.Schedule.ShowingAppointFormEventArgs)">
<summary>
Raises the <see cref="E:Syncfusion.Windows.Forms.Schedule.ScheduleControl.ShowingAppointmentForm"/> event.
</summary>
<param name="e">The <see cref="T:Syncfusion.Windows.Forms.Schedule.ShowingAppointFormEventArgs"/> that contains the event data.</param>
</member>
<member name="E:Syncfusion.Windows.Forms.Schedule.ScheduleControl.ItemChanging">
<summary>
A cancelable event raised before an IScheduleAppointment is modified.
</summary>
</member>
<member name="E:Syncfusion.Windows.Forms.Schedule.ScheduleControl.ItemChanged">
<summary>
A notification event raised after an IScheduleAppointment is modified.
</summary>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.ScheduleControl.RaiseItemChanging(Syncfusion.Schedule.ScheduleAppointmentCancelEventArgs)">
<summary>
Raises an <see cref="E:Syncfusion.Windows.Forms.Schedule.ScheduleControl.ItemChanging"/> event.
</summary>
<param name="e">The event arguments.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.ScheduleControl.RaiseItemChanged(Syncfusion.Schedule.ScheduleAppointmentEventArgs)">
<summary>
Raises an <see cref="E:Syncfusion.Windows.Forms.Schedule.ScheduleControl.ItemChanged"/> event.
</summary>
<param name="e">The event arguments.</param>
</member>
<member name="E:Syncfusion.Windows.Forms.Schedule.ScheduleControl.ParseDisplayItem">
<summary>
Occurs when the ScheduleGrid.ParseDisplayItem is called to set the display text for a ScheduleAppointment.
</summary>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.ScheduleControl.RaiseParseDisplayItem(Syncfusion.Windows.Forms.Schedule.ParseDisplayItemEventArgs)">
<summary>Raises the <see cref="E:Syncfusion.Windows.Forms.Schedule.ScheduleControl.ParseDisplayItem"/> event.</summary>
<internalonly/>
<remarks>
Internal use only.
</remarks>
<param name="e">The <see cref="T:Syncfusion.Windows.Forms.Schedule.ParseDisplayItemEventArgs"/> that contains the event data.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.ScheduleControl.OnParseDisplayItem(Syncfusion.Windows.Forms.Schedule.ParseDisplayItemEventArgs)">
<summary>
Raises the <see cref="E:Syncfusion.Windows.Forms.Schedule.ScheduleControl.ParseDisplayItem"/> event.
</summary>
<param name="e">The <see cref="T:Syncfusion.Windows.Forms.Schedule.ParseDisplayItemEventArgs"/> that contains the event data.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.ScheduleControl.IsItemChangingWired">
<summary>
Helper method for can query the item changing.
</summary>
<returns>Returns the boolean value.</returns>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.ScheduleControl.IsItemChangedWired">
<summary>
Helper method for can query the item changed.
</summary>
<returns>Returns the boolean value.</returns>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.ScheduleControl.OnItemChanging(Syncfusion.Schedule.ScheduleAppointmentCancelEventArgs)">
<summary>
Raises an <see cref="E:Syncfusion.Windows.Forms.Schedule.ScheduleControl.ItemChanging"/> event.
</summary>
<param name="e">The <see cref="T:Syncfusion.Schedule.ScheduleAppointmentCancelEventArgs"/> that contains the event data.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.ScheduleControl.OnItemChanged(Syncfusion.Schedule.ScheduleAppointmentEventArgs)">
<summary>
Raises an <see cref="E:Syncfusion.Windows.Forms.Schedule.ScheduleControl.ItemChanged"/> event.
</summary>
<param name="e">The <see cref="T:Syncfusion.Schedule.ScheduleAppointmentEventArgs"/> that contains the event data.</param>
</member>
<member name="P:Syncfusion.Windows.Forms.Schedule.ScheduleControl.EnableAlerts">
<summary>
Gets or sets a value indicating whether the alerts should be raised as appointment time approaches.
</summary>
<remarks>
Setting this property to true dynamically creates the AlertWindow used by this ScheduleControl.
Setting it to false will dispose of the associated AlertWindow.
</remarks>
</member>
<member name="P:Syncfusion.Windows.Forms.Schedule.ScheduleControl.MaxAppointment">
<summary>
Gets or sets the maximum appointment count.
</summary>
<remarks>
Set a minimum value for this if you use maximum value, it will decrease the performance of schedule grid.
</remarks>
</member>
<member name="E:Syncfusion.Windows.Forms.Schedule.ScheduleControl.EnableAlertsChanged">
<summary>
A notification event that is raised after ShowTime is modified.
</summary>
</member>
<member name="P:Syncfusion.Windows.Forms.Schedule.ScheduleControl.AlertWindow">
<summary>
Gets the AlertForm that displays the alerts.
</summary>
</member>
<member name="P:Syncfusion.Windows.Forms.Schedule.ScheduleControl.UseMirroredFormsWithRTL">
<summary>
Gets or sets a value indicating whether the forms used with editing appointments are mirrored when
ScheduleControl.RightToLeft is set to Yes.
<para/>Default value is true.
</summary>
</member>
<member name="P:Syncfusion.Windows.Forms.Schedule.ScheduleControl.SwitchViewStyle">
<summary>
Gets or sets a value indicating whether the view style should be changed in the Control
<para>Default value is true.</para>
</summary>
</member>
<member name="P:Syncfusion.Windows.Forms.Schedule.ScheduleControl.DisplayTimeSpansInEndTimeDropDown">
<summary>
Gets or sets a value indicating whether the EndTime dropdown in the <see cref="T:Syncfusion.Windows.Forms.Schedule.AppointmentForm"/> tries to
parenthetically display the time span in minutes.
<para/>Default value is true.
</summary>
</member>
<member name="P:Syncfusion.Windows.Forms.Schedule.ScheduleControl.AllowAdjustAppointmentsWithMouse">
<summary>
Gets or sets a value indicating whether the user can change an appointment time or date with the mouse.
<para/>Default value is true.
</summary>
</member>
<member name="P:Syncfusion.Windows.Forms.Schedule.ScheduleControl.ShowRoundedCorners">
<summary>
Gets or sets a value indicating whether the appointments are displayed with rounded corners.
<para/>Default value is false.
</summary>
</member>
<member name="P:Syncfusion.Windows.Forms.Schedule.ScheduleControl.ShowAllSpansInAllDayPanel">
<summary>
Gets or sets a value indicating whether non-AllDay multiday appointments are displayed in the AllDay area of the Day, WorkWeek and CustomDay views.
<para/>Default value is false.
</summary>
<remarks>
By default, if a multi-day appointment is not marked as AllDay, this appoint will not show across multiple days in WorkWeek
or CustomDay views. Instead, the appointment is shown only in the appropriate time slots during the day. Setting ShowAllSpansInAllDayPanel
to true will also show non-AllDay multiday appointments across multiple days.
</remarks>
</member>
<member name="P:Syncfusion.Windows.Forms.Schedule.ScheduleControl.ShowMultiDayAppointmentsAsSpans">
<summary>
Gets or sets a value indicating whether the multiday appointments are displayed across days in Month, Day, WorkWeek and CustomDay views.
<para/>Default value is true.
</summary>
<remarks>
When this property is set to true (the default setting) and the <see cref="P:Syncfusion.Windows.Forms.Schedule.ScheduleControl.DataSource"/> implements <see cref="T:Syncfusion.Schedule.IRecurringScheduleDataProvider"/>,
then an AllDay appointment that spans more than one day will display as a single panel across the multiple-day span of the appointment
for ScheduleViewTypes Day, CustomWeek, WorkWeek and Month (but not Week). When an appointment is shown as a multiday span,
the user will not be able to use the mouse to change the day span or drag it to a new location. The only way to edit such
spans is through the Edit dialog which normally appears on a double left-click or from the right-click context menu.
</remarks>
</member>
<member name="P:Syncfusion.Windows.Forms.Schedule.ScheduleControl.HeaderLabel">
<summary>
Gets or sets the Label Control that serves as the caption
at the top of the ScheduleControl.
</summary>
</member>
<member name="P:Syncfusion.Windows.Forms.Schedule.ScheduleControl.NavigationPanel">
<summary>
Gets or sets the panel where you can place additional controls and have them appear adjacent to the ScheduleControl.
</summary>
</member>
<member name="P:Syncfusion.Windows.Forms.Schedule.ScheduleControl.NavigationPanelFillWithCalendar">
<summary>
Gets or sets a value indicating whether the Calendar occupies the entire <see cref="P:Syncfusion.Windows.Forms.Schedule.ScheduleControl.NavigationPanel"/>
and sizes dynamically as the ScheduleControl is sized.
</summary>
</member>
<member name="P:Syncfusion.Windows.Forms.Schedule.ScheduleControl.NavigationPanelPosition">
<summary>
Gets the location of the <see cref="P:Syncfusion.Windows.Forms.Schedule.ScheduleControl.NavigationPanel"/>.
</summary>
</member>
<member name="P:Syncfusion.Windows.Forms.Schedule.ScheduleControl.ISO8601CalenderFormat">
<summary>
Gets or sets a value indicating whether ISO 8601 calendar format is applied or not.
</summary>
</member>
<member name="P:Syncfusion.Windows.Forms.Schedule.ScheduleControl.Appearance">
<summary>
Gets or sets a <see cref="T:Syncfusion.Windows.Forms.Schedule.ScheduleAppearance"/> object that controls
the visual properties of the ScheduleControl.
</summary>
</member>
<member name="P:Syncfusion.Windows.Forms.Schedule.ScheduleControl.DataSource">
<summary>
Gets or sets the data source for the ScheduleControl.
</summary>
</member>
<member name="P:Syncfusion.Windows.Forms.Schedule.ScheduleControl.ScheduleType">
<summary>
Gets or sets a value indicating whether a daily, weekly or monthly schedule is displayed.
</summary>
</member>
<member name="P:Syncfusion.Windows.Forms.Schedule.ScheduleControl.Culture">
<summary>
Gets or sets the culture used for the date formatting.
</summary>
<remarks>Defaults to the CultureInfo.InvariantCulture setting.</remarks>
</member>
<member name="P:Syncfusion.Windows.Forms.Schedule.ScheduleControl.EnableTouchMode">
<summary>
Gets or sets a value indicating whether the control enables the touch mode.
</summary>
</member>
<member name="E:Syncfusion.Windows.Forms.Schedule.ScheduleControl.CultureChanged">
<summary>
Occurs when the culture has been modified.
</summary>
<remarks>
You can use this event to move Culture settings into the ScheduleControl's Appearance
object to control how the Culture settings affect the look of the ScheduleControl.
</remarks>
<example>
<code lang="C#">
void scheduleControl1_CultureChanged(object sender, EventArgs e)
{
ScheduleControl sc = sender as ScheduleControl;
if (sc != null)
{
sc.Appearance.WeekHeaderFormat = sc.Culture.DateTimeFormat.MonthDayPattern;
}
}
</code>
</example>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.ScheduleControl.ApplyCultureToAppearance(System.Globalization.CultureInfo,Syncfusion.Windows.Forms.Schedule.ScheduleAppearance)">
<summary>
Applied the culture to the ScheduleControl. This method is called by the ScheduleControl when the ScheduleControl.Culture property is set to
move the specific culture settings to the Appearance object.
</summary>
<param name="currentCultureInfo">The new Culture.</param>
<param name="currentAppearance">The Appearance object to be set.</param>
<remarks>
Override this method to control how your Culture settings will affect the Appearance. The default settings
are as below
<code lang="C#">
currentAppearance.WorkWeekHeaderFormat = currentCultureInfo.DateTimeFormat.ShortDatePattern;
currentAppearance.WeekHeaderFormat = currentCultureInfo.DateTimeFormat.MonthDayPattern;
currentAppearance.WeekMonthFullFormat = currentCultureInfo.DateTimeFormat.LongDatePattern;
</code>
<code lang ="VB">
currentAppearance.WorkWeekHeaderFormat = currentCultureInfo.DateTimeFormat.ShortDatePattern
currentAppearance.WeekHeaderFormat = currentCultureInfo.DateTimeFormat.MonthDayPattern
currentAppearance.WeekMonthFullFormat = currentCultureInfo.DateTimeFormat.LongDatePattern
</code>
</remarks>
</member>
<member name="E:Syncfusion.Windows.Forms.Schedule.ScheduleControl.SetupContextMenu">
<summary>
Subscribe to this event to set up your own Context menu for the ScheduleControl.
</summary>
<remarks>
This menu allows you to control the Context menu that is displayed when your user
right clicks the DayContainerPanel that hosts the items in the ScheduleControl. Your
event handler code should set the Context menu for the ScheduleGrid returned by
ScheduleControl.GetScheduleHost. After doing so, your code should set e.Cancel = true.
Otherwise, the default implementation of a Windows Forms ContextMenu will override your
settings.
</remarks>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.ScheduleControl.OnSetupContextMenu">
<summary>
Sets up the context menu associated with the ScheduleControl.
</summary>
<remarks>Override this method to create your own context menus.</remarks>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.ScheduleControl.MetroContextMenu">
<summary>
Gets a Metro ContextMenu implementing standard set of menu items for metro theme
</summary>
<returns>A ContextMenu.</returns>
<remarks>
If you use this default implementation of a ContextMenu, you can dynamically
cancel the execution of a menu selection by subscribing to the
ScheduleControl.ScheduleAppointmentClick event and setting e.Cancel = true when
e.ClickType is RightClick.
</remarks>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.ScheduleControl.DefaultWindowsFormsContextMenu">
<summary>
Gets a default ContextMenu implementing standard set of menu items.
</summary>
<returns>A ContextMenu.</returns>
<remarks>
If you use this default implementation of a ContextMenu, you can dynamically
cancel the execution of a menu selection by subscribing to the
ScheduleControl.ScheduleAppointmentClick event and setting e.Cancel = true when
e.ClickType is RightClick.
</remarks>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.ScheduleControl.PerformSwitchToScheduleViewTypeClick(Syncfusion.Windows.Forms.Schedule.ScheduleViewType)">
<summary>
Switches the display to the specified ScheduleViewType.
</summary>
<param name="t">The requested ScheduleViewType.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.ScheduleControl.SwitchToScheduleViewTypeDay(System.DateTime)">
<summary>
Switches the display to the specified date with ScheduleViewType.Day.
</summary>
<param name="date">The requested date.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.ScheduleControl.PerformDeleteItemClick">
<summary>
Displays a dialog allowing you to delete an <see cref="T:Syncfusion.Schedule.IScheduleAppointment"/>.
</summary>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.ScheduleControl.PerformEditItemClick">
<summary>
Displays a dialog allowing you to edit an <see cref="T:Syncfusion.Schedule.IScheduleAppointment"/>.
</summary>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.ScheduleControl.PerformNewItemClick">
<summary>
Displays a dialog allowing you to enter a new <see cref="T:Syncfusion.Schedule.IScheduleAppointment"/>.
</summary>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.ScheduleControl.PerformNewAllDayItemClick">
<summary>
Displays a Dialog allowing you to enter a new AllDay <see cref="T:Syncfusion.Schedule.IScheduleAppointment"/>.
</summary>
</member>
<member name="P:Syncfusion.Windows.Forms.Schedule.ScheduleControl.ItemSelected">
<summary>
Gets a value indicating whether an ISchedule item has input focus (i.e., has been clicked)
</summary>
<remarks>
You can use this property to determine whether menu items should be enabled.
</remarks>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.ScheduleControl.dayItemClick(System.Object,System.EventArgs)">
<summary>
Used to change the schedule view type to Day.
</summary>
<param name="sender">The source control.</param>
<param name="e">The <see cref="T:System.EventArgs"/> that contains the event data.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.ScheduleControl.workWeekItemClick(System.Object,System.EventArgs)">
<summary>
Used to change the schedule view type to WorkWeek.
</summary>
<param name="sender">The source control.</param>
<param name="e">The <see cref="T:System.EventArgs"/> that contains the event data.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.ScheduleControl.weekItemClick(System.Object,System.EventArgs)">
<summary>
Used to change the schedule view type to Week.
</summary>
<param name="sender">The source control.</param>
<param name="e">The <see cref="T:System.EventArgs"/> that contains the event data.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.ScheduleControl.monthItemClick(System.Object,System.EventArgs)">
<summary>
Used to change the schedule view type to Month.
</summary>
<param name="sender">The source control.</param>
<param name="e">The <see cref="T:System.EventArgs"/> that contains the event data.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.ScheduleControl.newAllDayItemClick(System.Object,System.EventArgs)">
<summary>
Used to change the schedule view type to AllDay.
</summary>
<param name="sender">The source control.</param>
<param name="e">The <see cref="T:System.EventArgs"/> that contains the event data.</param>
</member>
<member name="E:Syncfusion.Windows.Forms.Schedule.ScheduleControl.ScheduleContextMenuClick">
<summary>
Occurs when you click or double click an item.
</summary>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.ScheduleControl.OnScheduleContextMenuClick(Syncfusion.Windows.Forms.Schedule.ScheduleContextMenuClickEventArgs)">
<summary>
/// Raises the <see cref="E:Syncfusion.Windows.Forms.Schedule.ScheduleControl.ScheduleContextMenuClick"/> event.
</summary>
<param name="e">The <see cref="T:Syncfusion.Windows.Forms.Schedule.ScheduleContextMenuClickEventArgs"/> that contains the event data.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.ScheduleControl.newItemClick(System.Object,System.EventArgs)">
<summary>
Used to perform the new item.
</summary>
<param name="sender">The source control.</param>
<param name="e">The <see cref="T:System.EventArgs"/> that contains the event data.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.ScheduleControl.editItemClick(System.Object,System.EventArgs)">
<summary>
Used to perform the edit item.
</summary>
<param name="sender">The source control.</param>
<param name="e">The <see cref="T:System.EventArgs"/> that contains the event data.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.ScheduleControl.deleteItemClick(System.Object,System.EventArgs)">
<summary>
Used to perform the delete item.
</summary>
<param name="sender">The source control.</param>
<param name="e">The <see cref="T:System.EventArgs"/> that contains the event data.</param>
</member>
<member name="P:Syncfusion.Windows.Forms.Schedule.ScheduleControl.FreezePainting">
<summary>
Gets or sets a value indicating whether painting should be suspended.
</summary>
</member>
<member name="E:Syncfusion.Windows.Forms.Schedule.ScheduleControl.ScheduleAppointmentClick">
<summary>
Occurs when you click or double click an item.
</summary>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.ScheduleControl.OnScheduleAppointmentClick(Syncfusion.Windows.Forms.Schedule.ScheduleAppointmentClickEventArgs)">
<summary>
Raises the <see cref="E:Syncfusion.Windows.Forms.Schedule.ScheduleControl.ScheduleAppointmentClick"/> event.
</summary>
<param name="e">The <see cref="T:Syncfusion.Windows.Forms.Schedule.ScheduleAppointmentClickEventArgs"/> that contains the event data.</param>
</member>
<member name="E:Syncfusion.Windows.Forms.Schedule.ScheduleControl.AdjustingAppointmentWithMouse">
<summary>
An event that lets you cancel appointment by appointment whether an appointment can be adjusted using the mouse.
</summary>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.ScheduleControl.OnAdjustingAppointmentWithMouse(Syncfusion.Windows.Forms.Schedule.AdjustingAppointmentMouseWithEventArgs)">
<summary>
Raises the <see cref="E:Syncfusion.Windows.Forms.Schedule.ScheduleControl.AdjustingAppointmentWithMouse"/> event.
</summary>
<remarks>
Raises a AdjustingAppointmentWithMouse event that lets you cancel appointment by appointment whether an appointment can be adjusted using the mouse.
</remarks>
<param name="e">The event arguments.</param>
</member>
<member name="E:Syncfusion.Windows.Forms.Schedule.ScheduleControl.ScheduleGridCreated">
<summary>
An event that lets you either use a derived ScheduleGridControl or to subscribe to events on the ScheduleGridControl.
</summary>
<remarks>
As you change ScheduleViewTypes within the ScheduleControl, new ScheduleGridControls are created to reflect the
new view type, say switching form a Month view to a Day view. This event is raised after the new ScheduleGrid
is created, allowing you to either swap it out for a derived ScheduleGrid, or subscribe to events on the ScheduleGrid.
<para>To catch the initial creation of a ScheduleGrid with this event, you should make sure you subscribe to the event
before you set the <see cref="P:Syncfusion.Windows.Forms.Schedule.ScheduleControl.ScheduleType"/> property.</para>
</remarks>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.ScheduleControl.OnScheduleGridCreated(Syncfusion.Windows.Forms.Schedule.ScheduleGridCreatedEventArgs)">
<summary>
Raises the <see cref="E:Syncfusion.Windows.Forms.Schedule.ScheduleControl.ScheduleGridCreated"/> event.
</summary>
<remarks>
Raises a ScheduleGridCreated event that lets you either use a derived ScheduleGridControl or to subscribe to events on the ScheduleGridControl.
</remarks>
<param name="e">The event arguments.</param>
</member>
<member name="T:Syncfusion.Windows.Forms.Schedule.FillPanel">
<summary>
Represents the control that is displayed in <see cref="T:Syncfusion.Windows.Forms.Schedule.ScheduleControl"/> as Layout panel.
</summary>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.FillPanel.#ctor">
<summary>
Initializes a new instance of the <see cref="T:Syncfusion.Windows.Forms.Schedule.FillPanel"/> class.
</summary>
</member>
<member name="T:Syncfusion.Windows.Forms.Schedule.ScheduleViewType">
<summary>
Defines the constants that specify the possible display types you can see in a ScheduleControl.
</summary>
</member>
<member name="F:Syncfusion.Windows.Forms.Schedule.ScheduleViewType.Day">
<summary>
Displays a single day of IScheduleAppointment objects in the ScheduleControl.
</summary>
</member>
<member name="F:Syncfusion.Windows.Forms.Schedule.ScheduleViewType.WorkWeek">
<summary>
Displays a five day workweek of IScheduleAppointment objects in the ScheduleControl.
</summary>
</member>
<member name="F:Syncfusion.Windows.Forms.Schedule.ScheduleViewType.Week">
<summary>
Displays a seven day week of IScheduleAppointment objects in the ScheduleControl.
</summary>
</member>
<member name="F:Syncfusion.Windows.Forms.Schedule.ScheduleViewType.Month">
<summary>
Displays a month of IScheduleAppointment objects in the ScheduleControl.
</summary>
</member>
<member name="F:Syncfusion.Windows.Forms.Schedule.ScheduleViewType.CustomWeek">
<summary>
Displays a variable number of days of IScheduleAppointment objects in the ScheduleControl.
</summary>
</member>
<member name="T:Syncfusion.Windows.Forms.Schedule.ContextMenuRenderer">
<summary>
Implements the renderer for metro ContextMenu customization.
</summary>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.ContextMenuRenderer.#ctor">
<summary>
Initializes a new instance of the <see cref="T:Syncfusion.Windows.Forms.Schedule.ContextMenuRenderer"/> class.
</summary>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.ContextMenuRenderer.OnRenderToolStripBorder(System.Windows.Forms.ToolStripRenderEventArgs)">
<summary>
OVerridden to call the base method.
</summary>
<param name="e">The <see cref="T:System.Windows.Forms.ToolStripRenderEventArgs"/> that contains the event data.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.ContextMenuRenderer.OnRenderImageMargin(System.Windows.Forms.ToolStripRenderEventArgs)">
<summary>
Overridden to draw the rectangle.
</summary>
<remarks>
It will be triggered when the margin for the image is rendered.
</remarks>
<param name="e">The <see cref="T:System.Windows.Forms.ToolStripRenderEventArgs"/> that contains the event data.</param>
</member>
<member name="T:Syncfusion.Windows.Forms.Schedule.OfficeThemedButton">
<summary>
Implements the office themed button.
</summary>
</member>
<member name="P:Syncfusion.Windows.Forms.Schedule.OfficeThemedButton.Drawing">
<summary>
Gets or sets the visual styles drawing.
</summary>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.OfficeThemedButton.DrawStyledControl(System.Drawing.Graphics,System.Windows.Forms.ButtonState,System.Windows.Forms.CheckState)">
<summary>
Overridden to draw the push button.
</summary>
<param name="g">The graphics.</param>
<param name="buttonState">State of the button.</param>
<param name="checkState">The checked state of the button.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.OfficeThemedButton.DrawControlText(System.Drawing.Graphics)">
<summary>
Overridden to draw the control text.
</summary>
<param name="g">The graphics.</param>
</member>
<member name="T:Syncfusion.Windows.Forms.Schedule.ScheduleAppearance">
<summary>
Implements the functionality of colors and fonts styles for <see cref="T:Syncfusion.Windows.Forms.Schedule.ScheduleControl"/>.
</summary>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.ScheduleAppearance.#ctor">
<summary>
Initializes a new instance of the <see cref="T:Syncfusion.Windows.Forms.Schedule.ScheduleAppearance"/> class.
</summary>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.ScheduleAppearance.#ctor(Syncfusion.Windows.Forms.Schedule.ScheduleControl)">
<summary>
Initializes a new instance of the <see cref="T:Syncfusion.Windows.Forms.Schedule.ScheduleAppearance"/> class.
</summary>
<param name="schedule">The ScheduleControl associated with this appearance object.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.ScheduleAppearance.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
<summary>
Initializes a new instance of the <see cref="T:Syncfusion.Windows.Forms.Schedule.ScheduleAppearance"/> class from a serialization stream.
</summary>
<param name="info">An object that holds all the data needed to serialize or deserialize this instance.</param>
<param name="context">Describes the source and destination of the serialized stream specified by info. </param>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.ScheduleAppearance.AttachSchedule(Syncfusion.Windows.Forms.Schedule.ScheduleControl)">
<summary>
Attaches an Appearance object to a particular ScheduleControl.
</summary>
<param name="schedule">The Appearance object.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.ScheduleAppearance.LoadBinary(System.String)">
<summary>
A static method that creates an instance of <see cref="T:Syncfusion.Windows.Forms.Schedule.ScheduleAppearance"/> that was
previously serialized as a binary file.
</summary>
<param name="fileName">The serialized filename.</param>
<returns>A ScheduleAppearance.</returns>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.ScheduleAppearance.LoadXML(System.String)">
<summary>
Creates an instance of <see cref="T:Syncfusion.Windows.Forms.Schedule.ScheduleAppearance"/> that was
previously serialized as a XML file.
</summary>
<param name="fileName">The serialized filename.</param>
<returns>A ScheduleAppearance.</returns>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.ScheduleAppearance.SaveXML(System.String)">
<summary>
Saves the Appearance object in an XML file
with the specified filename.
</summary>
<param name="fileName">The file name.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.ScheduleAppearance.SaveBinary(System.String)">
<summary>
Saves this Appearance object in binary format to a file
with the specified filename.
</summary>
<param name="fileName">File name.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.ScheduleAppearance.SaveBinary(System.IO.Stream)">
<summary>
Saves the Appearance object to a stream in binary format.
</summary>
<param name="s">Stream to save the object.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.ScheduleAppearance.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
<summary>
Implements the ISerializable interface and returns the data needed to serialize the Appearance object.
</summary>
<param name="info">A SerializationInfo object containing the information required to serialize the Appearance object.</param>
<param name="context">A StreamingContext object containing the source and destination of the serialized stream.</param>
</member>
<member name="P:Syncfusion.Windows.Forms.Schedule.ScheduleAppearance.PrimeTimeCellColor">
<summary>
Gets or sets the prime time cells in the Calendar.
</summary>
</member>
<member name="E:Syncfusion.Windows.Forms.Schedule.ScheduleAppearance.PrimeTimeCellColorChanged">
<summary>
A notification event that is raised after PrimeTimeCellColor is modified.
</summary>
</member>
<member name="P:Syncfusion.Windows.Forms.Schedule.ScheduleAppearance.PrimeTimeCellColorString">
<summary>Gets or sets the prime time cells in the Calendar.</summary>
<remarks>
Internal only
</remarks>
</member>
<member name="P:Syncfusion.Windows.Forms.Schedule.ScheduleAppearance.NonPrimeTimeCellColor">
<summary>
Gets or sets the non-prime time cells in the Calendar.
</summary>
</member>
<member name="E:Syncfusion.Windows.Forms.Schedule.ScheduleAppearance.NonPrimeTimeCellColorChanged">
<summary>
A notification event that is raised after PrimeTimeCellColor is modified.
</summary>
</member>
<member name="P:Syncfusion.Windows.Forms.Schedule.ScheduleAppearance.NonPrimeTimeCellColorString">
<summary>Gets or sets the non-prime time cells in the Calendar.</summary>
<remarks>
Internal only.
</remarks>
</member>
<member name="P:Syncfusion.Windows.Forms.Schedule.ScheduleAppearance.WorkWeekHeaderBackColor">
<summary>
Gets or sets the backcolor of header cells in a WorkWeek view.
</summary>
</member>
<member name="E:Syncfusion.Windows.Forms.Schedule.ScheduleAppearance.WorkWeekHeaderBackColorChanged">
<summary>
A notification event that is raised after WorkWeekHeaderBackColor is modified.
</summary>
</member>
<member name="P:Syncfusion.Windows.Forms.Schedule.ScheduleAppearance.WorkWeekHeaderBackColorString">
<summary>Gets or sets the work week header back color.</summary>
<remarks>
Internal only
</remarks>
</member>
<member name="P:Syncfusion.Windows.Forms.Schedule.ScheduleAppearance.WorkWeekHeaderForeColor">
<summary>
Gets or sets the forecolor of header cells in a WorkWeek view.
</summary>
</member>
<member name="E:Syncfusion.Windows.Forms.Schedule.ScheduleAppearance.WorkWeekHeaderForeColorChanged">
<summary>
A notification event that is raised after WorkWeekHeaderForeColor is modified.
</summary>
</member>
<member name="P:Syncfusion.Windows.Forms.Schedule.ScheduleAppearance.WorkWeekHeaderForeColorString">
<summary>Gets or sets the forecolor of header cells in a WorkWeek view.</summary>
<remarks>
Internal only
</remarks>
</member>
<member name="P:Syncfusion.Windows.Forms.Schedule.ScheduleAppearance.MonthWeekHeaderBackColor">
<summary>
Gets or sets the backcolor of header cells in a Month or Week view.
</summary>
</member>
<member name="E:Syncfusion.Windows.Forms.Schedule.ScheduleAppearance.MonthWeekHeaderBackColorChanged">
<summary>
A notification event that is raised after MonthWeekHeaderBackColor is modified.
</summary>
</member>
<member name="P:Syncfusion.Windows.Forms.Schedule.ScheduleAppearance.MonthWeekHeaderBackColorString">
<summary>Gets or sets the backcolor of header cells in a Month or Week view.</summary>
<remarks>
Internal only
</remarks>
</member>
<member name="P:Syncfusion.Windows.Forms.Schedule.ScheduleAppearance.MonthWeekHeaderForeColor">
<summary>
Gets or sets the forecolor of header cells in a Month or Week view.
</summary>
</member>
<member name="E:Syncfusion.Windows.Forms.Schedule.ScheduleAppearance.MonthWeekHeaderForeColorChanged">
<summary>
A notification event that is raised after MonthWeekHeaderForeColor is modified.
</summary>
</member>
<member name="P:Syncfusion.Windows.Forms.Schedule.ScheduleAppearance.MonthWeekHeaderForeColorString">
<summary> Gets or sets the forecolor of header cells in a Month or Week view.</summary>
<remarks>
Internal only
</remarks>
</member>
<member name="P:Syncfusion.Windows.Forms.Schedule.ScheduleAppearance.AllDayBackColor">
<summary>
Gets or sets the backcolor of the AllDay row in the calendar.
</summary>
</member>
<member name="P:Syncfusion.Windows.Forms.Schedule.ScheduleAppearance.TodayBackColor">
<summary>
Gets or sets the backcolor of the AllDay row in the calendar.
</summary>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.ScheduleAppearance.ShouldSerializeTodayBackColor">
<summary>
Determines whether TodayBackColor has been modified and its contents should be serialized at design-time.
</summary>
<returns>True if contents were changed; False otherwise.</returns>
</member>
<member name="E:Syncfusion.Windows.Forms.Schedule.ScheduleAppearance.AllDayBackColorChanged">
<summary>
A notification event that is raised after AllDayBackColor is modified.
</summary>
</member>
<member name="P:Syncfusion.Windows.Forms.Schedule.ScheduleAppearance.AllDayBackColorString">
<summary>Gets or sets the backcolor of the AllDay row in the calendar.</summary>
<remarks>
Internal only
</remarks>
</member>
<member name="P:Syncfusion.Windows.Forms.Schedule.ScheduleAppearance.ClickItemBorderColor">
<summary>
Gets or sets the border color for a clicked item.
</summary>
</member>
<member name="E:Syncfusion.Windows.Forms.Schedule.ScheduleAppearance.ClickItemBorderColorChanged">
<summary>
A notification event that is raised after ClickItemBorderColor is modified.
</summary>
</member>
<member name="P:Syncfusion.Windows.Forms.Schedule.ScheduleAppearance.ClickItemBorderColorString">
<summary>Gets or sets the border color for a clicked item.</summary>
<remarks>
Internal only
</remarks>
</member>
<member name="P:Syncfusion.Windows.Forms.Schedule.ScheduleAppearance.DragColor">
<summary>
Gets or sets the drag border color for a dragging item.
</summary>
</member>
<member name="E:Syncfusion.Windows.Forms.Schedule.ScheduleAppearance.DragColorChanged">
<summary>
A notification event that is raised after DragColor is modified.
</summary>
</member>
<member name="P:Syncfusion.Windows.Forms.Schedule.ScheduleAppearance.DragColorString">
<summary>Gets or sets the drag border color for a dragging item.</summary>
<remarks>
Internal only
</remarks>
</member>
<member name="P:Syncfusion.Windows.Forms.Schedule.ScheduleAppearance.TimeBackColor">
<summary>
Gets or sets the backcolor of the Time column in the calendar.
</summary>
</member>
<member name="E:Syncfusion.Windows.Forms.Schedule.ScheduleAppearance.TimeBackColorChanged">
<summary>
A notification event that is raised after TimeBackColor is modified.
</summary>
</member>
<member name="P:Syncfusion.Windows.Forms.Schedule.ScheduleAppearance.TimeBackColorString">
<summary>Gets or sets the backcolor of the Time column in the calendar.</summary>
<remarks>
Internal only
</remarks>
</member>
<member name="F:Syncfusion.Windows.Forms.Schedule.ScheduleAppearance.timeBigFontSize">
<summary>
size of the font for the large text in the time col display
</summary>
</member>
<member name="P:Syncfusion.Windows.Forms.Schedule.ScheduleAppearance.TimeBigFontSize">
<summary>
Gets or sets the size of the larger font used in the Time column in the calendar.
</summary>
</member>
<member name="E:Syncfusion.Windows.Forms.Schedule.ScheduleAppearance.TimeBigFontSizeChanged">
<summary>
A notification event that is raised after TimeBigFontSize is modified.
</summary>
</member>
<member name="P:Syncfusion.Windows.Forms.Schedule.ScheduleAppearance.TimeLittleFontSize">
<summary>
Gets or sets the size of the smaller font used in the Time column in the calendar.
</summary>
</member>
<member name="E:Syncfusion.Windows.Forms.Schedule.ScheduleAppearance.TimeLittleFontSizeChanged">
<summary>
A notification event that is raised after LittleFontSize is modified.
</summary>
</member>
<member name="P:Syncfusion.Windows.Forms.Schedule.ScheduleAppearance.TimeTextColor">
<summary>
Gets or sets the color of the text shown in the Time column in the calendar.
</summary>
</member>
<member name="E:Syncfusion.Windows.Forms.Schedule.ScheduleAppearance.TimeTextColorChanged">
<summary>
A notification event that is raised after TimeTextColor is modified.
</summary>
</member>
<member name="P:Syncfusion.Windows.Forms.Schedule.ScheduleAppearance.TimeTextColorString">
<summary>Gets or sets the color of the text shown in the Time column in the calendar.</summary>
<remarks>
Internal only
</remarks>
</member>
<member name="P:Syncfusion.Windows.Forms.Schedule.ScheduleAppearance.TextColor">
<summary>
Gets or sets the color of the basic text shown in the calendar.
</summary>
</member>
<member name="E:Syncfusion.Windows.Forms.Schedule.ScheduleAppearance.TextColorChanged">
<summary>
A notification event that is raised after TextColor is modified.
</summary>
</member>
<member name="P:Syncfusion.Windows.Forms.Schedule.ScheduleAppearance.TextColorString">
<summary>Gets or sets the color of the basic text shown in the calendar.</summary>
<remarks>
Internal only
</remarks>
</member>
<member name="P:Syncfusion.Windows.Forms.Schedule.ScheduleAppearance.NavigationCalendarStartDayOfWeek">
<summary>
Gets or sets the DayOfWeek that is shown in the left-most column of the calendar.
</summary>
</member>
<member name="E:Syncfusion.Windows.Forms.Schedule.ScheduleAppearance.NavigationCalendarStartDayOfWeekChanged">
<summary>
A notification event that is raised after NavigationCalendarStartDayOfWeek is modified.
</summary>
</member>
<member name="P:Syncfusion.Windows.Forms.Schedule.ScheduleAppearance.NavigationCalendarBackColor">
<summary>
Gets or sets the BackColor of the navigation calendar.
</summary>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.ScheduleAppearance.ShouldSerializeNavigationCalendarBackColor">
<summary>
Determines whether NavigationCalendarBackColor has been modified and its contents should be serialized at design-time.
</summary>
<returns>True if contents were changed; False otherwise.</returns>
</member>
<member name="E:Syncfusion.Windows.Forms.Schedule.ScheduleAppearance.NavigationCalendarBackColorChanged">
<summary>
A notification event that is raised after NavigationCalendaBackColor is modified.
</summary>
</member>
<member name="P:Syncfusion.Windows.Forms.Schedule.ScheduleAppearance.NavigationCalendarBackColorString">
<summary>Gets or sets the BackColor of the navigation calendar.</summary>
<remarks>
Internal only
</remarks>
</member>
<member name="P:Syncfusion.Windows.Forms.Schedule.ScheduleAppearance.NavigationCalendarWeekNumberColor">
<summary>
Gets or sets the color of the week numbers in the navigation calendar.
</summary>
</member>
<member name="E:Syncfusion.Windows.Forms.Schedule.ScheduleAppearance.NavigationCalendarWeekNumberColorChanged">
<summary>
A notification event that is raised after NavigationCalendarWeekNumberColor is modified.
</summary>
</member>
<member name="P:Syncfusion.Windows.Forms.Schedule.ScheduleAppearance.NavigationCalendarWeekNumberColorString">
<summary>Gets or sets the color of the week numbers in the navigation calendar.</summary>
<remarks>
Internal only
</remarks>
</member>
<member name="P:Syncfusion.Windows.Forms.Schedule.ScheduleAppearance.NavigationCalendarArrowColor">
<summary>
Gets or sets the color of the Arrows in the navigation calendar.
</summary>
</member>
<member name="E:Syncfusion.Windows.Forms.Schedule.ScheduleAppearance.NavigationCalendarArrowColorChanged">
<summary>
A notification event that is raised after NavigationCalendarArrowColor is modified.
</summary>
</member>
<member name="P:Syncfusion.Windows.Forms.Schedule.ScheduleAppearance.NavigationCalendarArrowColorString">
<summary>Gets or sets the color of the Arrows in the navigation calendar.</summary>
<remarks>
Internal only
</remarks>
</member>
<member name="P:Syncfusion.Windows.Forms.Schedule.ScheduleAppearance.NavigationCalendarTodayColor">
<summary>
Gets or sets the color of the text of Today in the navigation calendar.
</summary>
</member>
<member name="E:Syncfusion.Windows.Forms.Schedule.ScheduleAppearance.MoreItemArrowColorChanged">
<summary>
A notification event that is raised after MoreItemArrowColor is modified.
</summary>
</member>
<member name="P:Syncfusion.Windows.Forms.Schedule.ScheduleAppearance.MoreItemArrowColor">
<remarks>
which is enable after setting metro theme only.
</remarks>
<summary>
Gets or sets the color of the MoreItem Arrow Color.
</summary>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.ScheduleAppearance.ShouldSerializeMoreItemArrowColor">
<summary>
Determines whether MoreItemArrowColor has been modified and its contents should be serialized at design-time.
</summary>
<returns>True if contents were changed; False otherwise.</returns>
</member>
<member name="E:Syncfusion.Windows.Forms.Schedule.ScheduleAppearance.MoreItemArrowBorderColorChanged">
<summary>
A notification event that is raised after MoreItemArrowBorderColor is modified.
</summary>
</member>
<member name="P:Syncfusion.Windows.Forms.Schedule.ScheduleAppearance.MoreItemArrowBorderColor">
<remarks>
which is enable after setting metro theme only.
</remarks>
<summary>
Gets or sets the border color of the more item bitmap.
</summary>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.ScheduleAppearance.ShouldSerializeMoreItemArrowBorderColor">
<summary>
Determines whether MoreItemArrowBorderColor has been modified and its contents should be serialized at design-time.
</summary>
<returns>True if contents were changed; False otherwise.</returns>
</member>
<member name="E:Syncfusion.Windows.Forms.Schedule.ScheduleAppearance.MoreItemArrowHoverColorChanged">
<summary>
A notification event that is raised after MoreItemArrowHoverColor is modified.
</summary>
</member>
<member name="P:Syncfusion.Windows.Forms.Schedule.ScheduleAppearance.MoreItemArrowHoverColor">
<remarks>
which is enable after setting metro theme only.
</remarks>
<summary>
Gets or sets the hover color of the more items bitmap.
</summary>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.ScheduleAppearance.ShouldSerializeMoreItemArrowHoverColor">
<summary>
Determines whether MoreItemArrowHoverColor has been modified and its contents should be serialized at design-time.
</summary>
<returns>True if contents were changed; False otherwise.</returns>
</member>
<member name="E:Syncfusion.Windows.Forms.Schedule.ScheduleAppearance.NavigationCalendarTodayBackColorChanged">
<summary>
A notification event that is raised after NavigationCalendarTodayBackColor is modified.
</summary>
</member>
<member name="P:Syncfusion.Windows.Forms.Schedule.ScheduleAppearance.NavigationCalendarTodayBackColor">
<summary>
Gets or sets the back color of the text of Today in the navigation calendar.
</summary>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.ScheduleAppearance.ShouldSerializeNavigationCalendarTodayBackColor">
<summary>
Determines whether NavigationCalendarTodayBackColor has been modified and its contents should be serialized at design-time.
</summary>
<returns>True if contents were changed; False otherwise.</returns>
</member>
<member name="E:Syncfusion.Windows.Forms.Schedule.ScheduleAppearance.NavigationCalendarTodayColorChanged">
<summary>
A notification event that is raised after NavigationCalendarTodayColor is modified.
</summary>
</member>
<member name="P:Syncfusion.Windows.Forms.Schedule.ScheduleAppearance.NavigationCalendarTodayColorString">
<summary>Gets or sets the back color of the text of Today in the navigation calendar.</summary>
<remarks>
Internal only
</remarks>
</member>
<member name="P:Syncfusion.Windows.Forms.Schedule.ScheduleAppearance.NavigationCalendarDisabledTextColor">
<summary>
Gets or sets the color of the disabled text in the navigation calendar.
</summary>
</member>
<member name="E:Syncfusion.Windows.Forms.Schedule.ScheduleAppearance.NavigationCalendarDisabledTextColorChanged">
<summary>
A notification event that is raised after NavigationCalendarDisabledTextColor is modified.
</summary>
</member>
<member name="P:Syncfusion.Windows.Forms.Schedule.ScheduleAppearance.NavigationCalendarDisabledTextColorString">
<summary>Gets or sets the color of the disabled text in the navigation calendar.</summary>
<remarks>
Internal only
</remarks>
</member>
<member name="P:Syncfusion.Windows.Forms.Schedule.ScheduleAppearance.NavigationCalendarTextColor">
<summary>
Gets or sets the color of the header color in the navigation calendar.
</summary>
</member>
<member name="E:Syncfusion.Windows.Forms.Schedule.ScheduleAppearance.NavigationCalendarTextColorChanged">
<summary>
A notification event that is raised after NavigationCalendarTextColor is modified.
</summary>
</member>
<member name="P:Syncfusion.Windows.Forms.Schedule.ScheduleAppearance.NavigationCalendarTextColorString">
<summary>Gets or sets the color of the header color in the navigation calendar.</summary>
<remarks>
Internal only
</remarks>
</member>
<member name="P:Syncfusion.Windows.Forms.Schedule.ScheduleAppearance.NavigationCalendarHeaderColor">
<summary>
Gets or sets the color of the header in the navigation calendar.
</summary>
</member>
<member name="E:Syncfusion.Windows.Forms.Schedule.ScheduleAppearance.NavigationCalendarHeaderColorChanged">
<summary>
A notification event that is raised after NavigationCalendarHeaderColor is modified.
</summary>
</member>
<member name="P:Syncfusion.Windows.Forms.Schedule.ScheduleAppearance.NavigationCalendarHeaderColorString">
<summary>Gets or sets the color of the header in the navigation calendar.</summary>
<remarks>
Internal only
</remarks>
</member>
<member name="P:Syncfusion.Windows.Forms.Schedule.ScheduleAppearance.NavigationCalendarSelectionColor">
<summary>
Gets or sets the color of the selection color in the navigation calendar.
</summary>
</member>
<member name="E:Syncfusion.Windows.Forms.Schedule.ScheduleAppearance.NavigationCalendarTodayTextColorChanged">
<summary>
A notification event that is raised after NavigationCalendarTodayTextColor is modified.
</summary>
</member>
<member name="P:Syncfusion.Windows.Forms.Schedule.ScheduleAppearance.NavigationCalendarTodayTextColor">
<summary>
Gets or sets the color of the current date text in the navigation calendar.
</summary>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.ScheduleAppearance.ShouldSerializeNavigationCalendarTodayTextColor">
<summary>
Determines whether NavigationCalendarTodayTextColor has been modified and its contents should be serialized at design-time.
</summary>
<returns>True if contents were changed; False otherwise.</returns>
</member>
<member name="E:Syncfusion.Windows.Forms.Schedule.ScheduleAppearance.NavigationCalendarSelectionColorChanged">
<summary>
A notification event that is raised after NavigationCalendarSelectionColor is modified.
</summary>
</member>
<member name="P:Syncfusion.Windows.Forms.Schedule.ScheduleAppearance.NavigationCalendarSelectionColorString">
<summary>Gets or sets the selection color in the navigation calendar.</summary>
<remarks>
Internal only
</remarks>
</member>
<member name="P:Syncfusion.Windows.Forms.Schedule.ScheduleAppearance.SplitterBackColor">
<summary>
Gets or sets the back color of the two splitters in the ScheduleControl.
</summary>
</member>
<member name="E:Syncfusion.Windows.Forms.Schedule.ScheduleAppearance.SplitterBackColorChanged">
<summary>
A notification event that is raised after SplitterBackColor is modified.
</summary>
</member>
<member name="P:Syncfusion.Windows.Forms.Schedule.ScheduleAppearance.SplitterBackColorString">
<summary>Gets or sets the back color of the two splitters in the ScheduleControl.</summary>
<remarks>
Internal only
</remarks>
</member>
<member name="P:Syncfusion.Windows.Forms.Schedule.ScheduleAppearance.CaptionBackColor">
<summary>
Gets or sets the color of the caption area above the calendar.
</summary>
</member>
<member name="P:Syncfusion.Windows.Forms.Schedule.ScheduleAppearance.Culture">
<summary>
Gets the culture used for the date formatting.
</summary>
<remarks>Defaults to the CultureInfo.InvariantCulture setting.</remarks>
</member>
<member name="P:Syncfusion.Windows.Forms.Schedule.ScheduleAppearance.ISO8601CalenderFormat">
<summary>
Gets or Sets a value indicating whether ISO 8601 calender format is applied or not.
</summary>
</member>
<member name="E:Syncfusion.Windows.Forms.Schedule.ScheduleAppearance.CaptionBackColorChanged">
<summary>
A notification event that is raised after CaptionBackColor is modified.
</summary>
</member>
<member name="P:Syncfusion.Windows.Forms.Schedule.ScheduleAppearance.CaptionBackColorString">
<summary>Gets or sets the color of the caption area above the calendar.</summary>
<remarks>
Internal only
</remarks>
</member>
<member name="P:Syncfusion.Windows.Forms.Schedule.ScheduleAppearance.SolidBorderColor">
<summary>
Gets or sets the color of the solid lines in the calendar.
</summary>
</member>
<member name="E:Syncfusion.Windows.Forms.Schedule.ScheduleAppearance.SolidBorderColorChanged">
<summary>
A notification event that is raised after SolidBorderColor is modified.
</summary>
</member>
<member name="P:Syncfusion.Windows.Forms.Schedule.ScheduleAppearance.SolidBorderColorString">
<summary>Gets or sets the color of the solid lines in the calendar.</summary>
<remarks>
Internal only
</remarks>
</member>
<member name="P:Syncfusion.Windows.Forms.Schedule.ScheduleAppearance.MarkColumnColor">
<summary>
Gets or sets the color of the thick solid line next to the Time Column the Day View in the calendar.
</summary>
</member>
<member name="E:Syncfusion.Windows.Forms.Schedule.ScheduleAppearance.MarkColumnColorChanged">
<summary>
A notification event that is raised after MarkColumnColor is modified.
</summary>
</member>
<member name="P:Syncfusion.Windows.Forms.Schedule.ScheduleAppearance.MarkColumnColorString">
<summary>Gets or sets the color of the thick solid line next to the Time Column the Day View in the calendar.</summary>
<remarks>
Internal only
</remarks>
</member>
<member name="P:Syncfusion.Windows.Forms.Schedule.ScheduleAppearance.ThemesEnabled">
<summary>
Gets or sets whether the Themes are enabled.
</summary>
</member>
<member name="E:Syncfusion.Windows.Forms.Schedule.ScheduleAppearance.ThemesEnabledChanged">
<summary>
A notification event that is raised after ThemesEnabled is modified.
</summary>
</member>
<member name="T:Syncfusion.Windows.Forms.Schedule.ScheduleAppearance.MoreItemsArrowDirections">
<summary>
Defines the constants that specify the position of the more items Arrow Directions.
</summary>
</member>
<member name="F:Syncfusion.Windows.Forms.Schedule.ScheduleAppearance.MoreItemsArrowDirections.Up">
<summary>
Specifies the arrow direction as Up
</summary>
</member>
<member name="F:Syncfusion.Windows.Forms.Schedule.ScheduleAppearance.MoreItemsArrowDirections.Right">
<summary>
Specifies the arrow direction as Right
</summary>
</member>
<member name="F:Syncfusion.Windows.Forms.Schedule.ScheduleAppearance.MoreItemsArrowDirections.Down">
<summary>
Specifies the arrow direction as Down
</summary>
</member>
<member name="F:Syncfusion.Windows.Forms.Schedule.ScheduleAppearance.MoreItemsArrowDirections.Left">
<summary>
Specifies the arrow direction as Left
</summary>
</member>
<member name="P:Syncfusion.Windows.Forms.Schedule.ScheduleAppearance.MoreItemsArrowDirection">
<summary>
Gets or sets whether the arrow direction of the more items icon.
</summary>
</member>
<member name="E:Syncfusion.Windows.Forms.Schedule.ScheduleAppearance.MoreItemsArrowDirectionChanged">
<summary>
A notification event that is raised after Arrow direction is modified.
</summary>
</member>
<member name="P:Syncfusion.Windows.Forms.Schedule.ScheduleAppearance.ShowCaption">
<summary>
Gets or sets a value indicating whether the Caption Panel above the Calendar is visible.
</summary>
</member>
<member name="E:Syncfusion.Windows.Forms.Schedule.ScheduleAppearance.ShowCaptionChanged">
<summary>
A notification event that is raised after ShowCaption is modified.
</summary>
</member>
<member name="P:Syncfusion.Windows.Forms.Schedule.ScheduleAppearance.ShowCaptionButtons">
<summary>
Gets or sets a value indicating whether navigation buttons are shown on the Caption Panel.
</summary>
</member>
<member name="E:Syncfusion.Windows.Forms.Schedule.ScheduleAppearance.ShowCaptionButtonsChanged">
<summary>
A notification event that is raised after ShowCaptionButtons is modified.
</summary>
</member>
<member name="P:Syncfusion.Windows.Forms.Schedule.ScheduleAppearance.PrimeTimeStart">
<summary>
Gets or sets the time (0 to 23 in hours) when prime time color starts being used in the display.
</summary>
</member>
<member name="E:Syncfusion.Windows.Forms.Schedule.ScheduleAppearance.PrimeTimeStartChanged">
<summary>
A notification event that is raised after PrimeTimeStart is modified.
</summary>
</member>
<member name="P:Syncfusion.Windows.Forms.Schedule.ScheduleAppearance.PrimeTimeEnd">
<summary>
Gets or sets the time (0 to 23 in hours) when the prime time color stops being used in the display.
</summary>
</member>
<member name="E:Syncfusion.Windows.Forms.Schedule.ScheduleAppearance.PrimeTimeEndChanged">
<summary>
A notification event that is raised after PrimeTimeEnd is modified.
</summary>
</member>
<member name="P:Syncfusion.Windows.Forms.Schedule.ScheduleAppearance.ScheduleAppointmentTipFormat">
<summary>
Gets or sets the text that is displayed for schedule item tips.
</summary>
<remarks>You can use tokens defined in ScheduleGrid.DisplayItemFormatStrings
to control the determine the text displayed. The default
value is "[subject]\r\n\r\n[content]".</remarks>
</member>
<member name="E:Syncfusion.Windows.Forms.Schedule.ScheduleAppearance.ScheduleAppointmentTipFormatChanged">
<summary>
A notification event that is raised after ScheduleAppointmentTipFormat is modified.
</summary>
</member>
<member name="P:Syncfusion.Windows.Forms.Schedule.ScheduleAppearance.DayItemFormat">
<summary>
Gets or sets the display format of a schedule item displayed in a Day/WorkWeek view.
</summary>
<remarks>
Choose from these tokens.
"allday", "end", "label", "location", "marker", "owner", "reminder", "subject", "start", "no closing delimiter error", "starttime", "endtime", "startdate", "enddate"
</remarks>
</member>
<member name="E:Syncfusion.Windows.Forms.Schedule.ScheduleAppearance.DayItemFormatChanged">
<summary>
A notification event that is raised after DayItemFormat is modified.
</summary>
</member>
<member name="P:Syncfusion.Windows.Forms.Schedule.ScheduleAppearance.WeekMonthItemFormat">
<summary>
Gets or sets the display format of a schedule item shown in a Week/Month view.
Note:
New Line character ("\n") is not allowed and will be ignogered if entered any.
</summary>
<remarks>
Choose from these tokens.
"allday", "end", "label", "location", "marker", "owner", "reminder", "subject", "start", "no closing delimiter error", "starttime", "endtime", "startdate", "enddate"
</remarks>
</member>
<member name="E:Syncfusion.Windows.Forms.Schedule.ScheduleAppearance.WeekMonthItemFormatChanged">
<summary>
A notification event that is raised after DayItemFormat is modified.
</summary>
</member>
<member name="P:Syncfusion.Windows.Forms.Schedule.ScheduleAppearance.FullWeekHeaderFormat">
<summary>
Gets or sets the display format of header of a day in a Week view.
</summary>
<remarks>
The default format is "D", the long date format.
</remarks>
</member>
<member name="E:Syncfusion.Windows.Forms.Schedule.ScheduleAppearance.FullWeekHeaderFormatChanged">
<summary>
A notification event that is raised after FullWeekHeaderFormat is modified.
</summary>
</member>
<member name="P:Syncfusion.Windows.Forms.Schedule.ScheduleAppearance.WorkWeekHeaderFormat">
<summary>
Gets or sets the display format of header of a day in a WorkWeek view.
</summary>
<remarks>
The default format is "MM/dd/yyyy".
</remarks>
</member>
<member name="E:Syncfusion.Windows.Forms.Schedule.ScheduleAppearance.WorkWeekHeaderFormatChanged">
<summary>
A notification event that is raised after WorkWeekHeaderFormat is modified.
</summary>
</member>
<member name="P:Syncfusion.Windows.Forms.Schedule.ScheduleAppearance.WeekHeaderFormat">
<summary>
Gets or sets the date display format of header label in a WorkWeek view.
</summary>
<remarks>
The default format is "MMM d".
</remarks>
</member>
<member name="E:Syncfusion.Windows.Forms.Schedule.ScheduleAppearance.WeekHeaderFormatChanged">
<summary>
A notification event that is raised after WeekHeaderFormat is modified.
</summary>
</member>
<member name="P:Syncfusion.Windows.Forms.Schedule.ScheduleAppearance.LongHeaderFormat">
<summary>
Gets or sets the display format of header of a Day view.
</summary>
<remarks>
The default format is "dddd, d MMMM yyyy", the short date format.
</remarks>
</member>
<member name="E:Syncfusion.Windows.Forms.Schedule.ScheduleAppearance.LongHeaderFormatChanged">
<summary>
A notification event that is raised after LongHeaderFormat is modified.
</summary>
</member>
<member name="P:Syncfusion.Windows.Forms.Schedule.ScheduleAppearance.AllDayItemFormat">
<summary>
Gets or sets the display format of an AllDay item.
</summary>
<remarks>
Choose from these tokens.
"allday", "end", "label", "location", "marker", "owner", "reminder", "subject", "start", "no closing delimiter error", "starttime", "endtime", "startdate", "enddate"
</remarks>
</member>
<member name="E:Syncfusion.Windows.Forms.Schedule.ScheduleAppearance.AllDayItemFormatChanged">
<summary>
A notification event that is raised after DayItemFormat is modified.
</summary>
</member>
<member name="P:Syncfusion.Windows.Forms.Schedule.ScheduleAppearance.SpanItemFormatLeftText">
<summary>
Gets or sets the display format of a text displayed on an interior left-side of a multiday span.
</summary>
<remarks>
Choose from these tokens.
"allday", "end", "label", "location", "marker", "owner", "reminder", "subject", "start", "no closing delimiter error", "starttime", "endtime", "startdate", "enddate"
</remarks>
</member>
<member name="E:Syncfusion.Windows.Forms.Schedule.ScheduleAppearance.SpanItemFormatLeftTextChanged">
<summary>
A notification event that is raised after SpanItemFormatLeftText is modified.
</summary>
</member>
<member name="P:Syncfusion.Windows.Forms.Schedule.ScheduleAppearance.WeekMonthFullFormat">
<summary>
Gets or sets the display format of the text displayed at the start of a new year in the Month or Week view, and in the cell header of the Week view.
</summary>
</member>
<member name="E:Syncfusion.Windows.Forms.Schedule.ScheduleAppearance.WeekMonthFullFormatChanged">
<summary>
A notification event that is raised after WeekMonthFullFormat is modified.
</summary>
</member>
<member name="P:Syncfusion.Windows.Forms.Schedule.ScheduleAppearance.WeekMonthNewMonth">
<summary>
Gets or sets the display format of the text displayed at the start of a new month in the Month view.
</summary>
</member>
<member name="E:Syncfusion.Windows.Forms.Schedule.ScheduleAppearance.WeekMonthNewMonthChanged">
<summary>
A notification event that is raised after WeekMonthNewMonth is modified.
</summary>
</member>
<member name="P:Syncfusion.Windows.Forms.Schedule.ScheduleAppearance.MonthHeaderFormat">
<summary>
Gets or sets the display format of the text displayed in the header label for the Month view.
</summary>
</member>
<member name="E:Syncfusion.Windows.Forms.Schedule.ScheduleAppearance.MonthHeaderFormatChanged">
<summary>
A notification event that is raised after MonthHeaderFormat is modified.
</summary>
</member>
<member name="P:Syncfusion.Windows.Forms.Schedule.ScheduleAppearance.SpanItemFormatRightText">
<summary>
Gets or sets the display format of a text displayed on an interior right-side of a multiday span.
</summary>
<remarks>
Choose from these tokens.
"allday", "end", "label", "location", "marker", "owner", "reminder", "subject", "start", "no closing delimiter error", "starttime", "endtime", "startdate", "enddate"
</remarks>
</member>
<member name="E:Syncfusion.Windows.Forms.Schedule.ScheduleAppearance.SpanItemFormatRightTextChanged">
<summary>
A notification event that is raised after SpanItemFormatRighttText is modified.
</summary>
</member>
<member name="P:Syncfusion.Windows.Forms.Schedule.ScheduleAppearance.SpanItemFormatMiddleText">
<summary>
Gets or sets the display format of a text displayed in the middle of a multiday span.
</summary>
<remarks>
Choose from these tokens.
"allday", "end", "label", "location", "marker", "owner", "reminder", "subject", "start", "no closing delimiter error", "starttime", "endtime", "startdate", "enddate"
</remarks>
</member>
<member name="E:Syncfusion.Windows.Forms.Schedule.ScheduleAppearance.SpanItemFormatMiddleTextChanged">
<summary>
A notification event that is raised after SpanItemFormatMiddleText is modified.
</summary>
</member>
<member name="P:Syncfusion.Windows.Forms.Schedule.ScheduleAppearance.SpanItemFormatTerminalLeftText">
<summary>
Gets or sets the display format of a text displayed on an open left-side of a multiday span.
</summary>
<remarks>
Choose from these tokens.
"allday", "end", "label", "location", "marker", "owner", "reminder", "subject", "start", "no closing delimiter error", "starttime", "endtime", "startdate", "enddate"
</remarks>
</member>
<member name="E:Syncfusion.Windows.Forms.Schedule.ScheduleAppearance.SpanItemFormatTerminalLeftTextChanged">
<summary>
A notification event that is raised after SpanItemFormatTerminalLeftText is modified.
</summary>
</member>
<member name="P:Syncfusion.Windows.Forms.Schedule.ScheduleAppearance.SpanItemFormatTerminalRightText">
<summary>
Gets or sets the display format of a text displayed on an open right-side of a multiday span.
</summary>
<remarks>
Choose from these tokens.
"allday", "end", "label", "location", "marker", "owner", "reminder", "subject", "start", "no closing delimiter error", "starttime", "endtime", "startdate", "enddate"
</remarks>
</member>
<member name="E:Syncfusion.Windows.Forms.Schedule.ScheduleAppearance.SpanItemFormatTerminalRightTextChanged">
<summary>
A notification event that is raised after SpanItemFormatRighttText is modified.
</summary>
</member>
<member name="P:Syncfusion.Windows.Forms.Schedule.ScheduleAppearance.DateTimeFormat">
<summary>
Gets or sets the format string used when formatting any of
the tokens from DisplayItemFormatStrings that represents combined
date and time values.
</summary>
</member>
<member name="E:Syncfusion.Windows.Forms.Schedule.ScheduleAppearance.DateTimeFormatChanged">
<summary>
A notification event that is raised after DateTimeFormat is modified.
</summary>
</member>
<member name="P:Syncfusion.Windows.Forms.Schedule.ScheduleAppearance.DateFormat">
<summary>
Gets or sets the format string used when formatting any of
the tokens from DisplayItemFormatStrings that represents a
date only value.
</summary>
</member>
<member name="E:Syncfusion.Windows.Forms.Schedule.ScheduleAppearance.DateFormatChanged">
<summary>
A notification event that is raised after DateFormat is modified.
</summary>
</member>
<member name="P:Syncfusion.Windows.Forms.Schedule.ScheduleAppearance.TimeFormat">
<summary>
Gets or sets the format string used when formatting any of
the tokens from DisplayItemFormatStrings that represents combined
a time only value.
</summary>
</member>
<member name="E:Syncfusion.Windows.Forms.Schedule.ScheduleAppearance.TimeFormatChanged">
<summary>
A notification event that is raised after TimeFormat is modified.
</summary>
</member>
<member name="P:Syncfusion.Windows.Forms.Schedule.ScheduleAppearance.WeekCalendarStartDayOfWeek">
<summary>
Gets or sets the DayOfWeek that is shown in the first day of the week calendar.
</summary>
</member>
<member name="E:Syncfusion.Windows.Forms.Schedule.ScheduleAppearance.WeekCalendarStartDayOfWeekChanged">
<summary>
A notification event that is raised after WeekCalendarStartDayOfWeek is modified.
</summary>
</member>
<member name="P:Syncfusion.Windows.Forms.Schedule.ScheduleAppearance.MonthCalendarStartDayOfWeek">
<summary>
Gets or sets the DayOfWeek that is shown in the left-most column of the month calendar.
</summary>
<remarks>
This property is related to <see cref="P:Syncfusion.Windows.Forms.Schedule.ScheduleAppearance.MonthShowFullWeek"/>. Setting MonthCalendarStartDayOfWeek
to any value other than Monday, will force MonthShowFullWeek to true. This is because when
MonthShowFullWeek is false, the MonthCalendar starts with Monday and shows a stacked
Saturday/Sunday column. Telling the ScheduleControl to start the MonthCalendar with some day other
than Monday will force the MonthCalendar to display full weeks.
</remarks>
</member>
<member name="E:Syncfusion.Windows.Forms.Schedule.ScheduleAppearance.MonthCalendarStartDayOfWeekChanged">
<summary>
A notification event that is raised after MonthCalendarStartDayOfWeek is modified.
</summary>
</member>
<member name="P:Syncfusion.Windows.Forms.Schedule.ScheduleAppearance.MonthShowFullWeek">
<summary>
Gets or sets whether Month view shows seven columns or six columns with Saturday/Sunday stacked."
</summary>
</member>
<member name="E:Syncfusion.Windows.Forms.Schedule.ScheduleAppearance.MonthShowFullWeekChanged">
<summary>
A notification event that is raised after MonthShowFullWeek is modified.
</summary>
</member>
<member name="P:Syncfusion.Windows.Forms.Schedule.ScheduleAppearance.ScheduleAppointmentTipsEnabled">
<summary>
Gets or sets whether tips should be displayed when you hoover over
an item in a schedule.
</summary>
</member>
<member name="E:Syncfusion.Windows.Forms.Schedule.ScheduleAppearance.ScheduleAppointmentTipsEnabledChanged">
<summary>
A notification event that is raised after ScheduleAppointmentTipsEnabled is modified.
</summary>
</member>
<member name="P:Syncfusion.Windows.Forms.Schedule.ScheduleAppearance.Hours24">
<summary>
Gets or sets whether time column is displayed using a 24 hour format.
</summary>
</member>
<member name="E:Syncfusion.Windows.Forms.Schedule.ScheduleAppearance.Hours24Changed">
<summary>
A notification event that is raised after Hours24 is modified.
</summary>
</member>
<member name="P:Syncfusion.Windows.Forms.Schedule.ScheduleAppearance.DayMonthCutoff">
<summary>
Get or sets the maximum number of days that can appear side by side in a Day style calendar
</summary>
<remarks>
The default value is 9. So, if you select more than 8 dates in the navigation calendar, the dates
cannot be displayed side by side in the ScheduleControl.
</remarks>
</member>
<member name="E:Syncfusion.Windows.Forms.Schedule.ScheduleAppearance.DayMonthCutoffChanged">
<summary>
A notification event that is raised after DayMonthCutoff is modified.
</summary>
</member>
<member name="P:Syncfusion.Windows.Forms.Schedule.ScheduleAppearance.DivisionsPerRow">
<summary>
Gets or sets the number of time divisions per row that appear in a Day, Custom or WorkWeek view. This property is used
in conjunction with DivisionsPerHour to determine the number of grid rows that appear in an hour time slot.
</summary>
<remarks>
The number of time divisions per row determines how many of the time divisions set by DivisionsPerHour appear in each
grid row.
<para>So, if DivisionPerHour is 4 and DivisionsPerRow is 2, then you would see the hour split into 2 grid rows with
the rows changing at the 30 minute mark, and you could enter appointments that start at 0, 15, 30 or 45 minutes. So, the
hour is divided into 4 time slots on the 15 minute marks but you only see a grid row at the 30 minute mark.
</para><para>As another example, if DivisionPerHour is 6 and DivisionsPerRow is 2, then you would see the hour split into 2 grid rows with
the rows changing at the 20 and 40 minute marks, and you could enter appointments that start at any 10 minute mark. So, the
hour is divided into 6 time slots on the 10 minute marks and you only see a grid row at the 20 minute marks.
</para>
The value of DivisionPerRow should be a factor of DivisionsPerHour. If it is not, then DivisionPerRow defaults to 1.
The default values for DivisionPerRow is 1 (to go along with the default value of 2 for the DivisionsPerHour).
</remarks>
</member>
<member name="E:Syncfusion.Windows.Forms.Schedule.ScheduleAppearance.DivisionsPerRowChanged">
<summary>
A notification event that is raised after DivisionsPerRow is modified.
</summary>
</member>
<member name="P:Syncfusion.Windows.Forms.Schedule.ScheduleAppearance.DivisionsPerHour">
<summary>
Gets or sets the number of time divisions per hour that appear in a Day, Custom or WorkWeek view.
</summary>
<remarks>
The number of divisions determines the minimum time that can be used for an appointment. The default value
is 2 indicating you can have two 30-minute appointments per hour. If you want to allow three 20-minutes,
or four 15-minutes appointments per hour, then set this value to 3 or 4.
This value must be 1, 2, 3, 4, 5, 6, 10, 12, 15, 20 or 30.
</remarks>
</member>
<member name="E:Syncfusion.Windows.Forms.Schedule.ScheduleAppearance.DivisionsPerHourChanged">
<summary>
A notification event that is raised after DivisionsPerHour is modified.
</summary>
</member>
<member name="P:Syncfusion.Windows.Forms.Schedule.ScheduleAppearance.ShowTime">
<summary>
Gets or sets whether the Time Column should appear in the ScheduleControl.
</summary>
</member>
<member name="E:Syncfusion.Windows.Forms.Schedule.ScheduleAppearance.ShowTimeChanged">
<summary>
A notification event that is raised after ShowTime is modified.
</summary>
</member>
<member name="P:Syncfusion.Windows.Forms.Schedule.ScheduleAppearance.VisualStyle">
<summary>
Gets or sets the VisualStyle for this ScheduleControl. The setting only applies
if <see cref="P:Syncfusion.Windows.Forms.Schedule.ScheduleAppearance.ThemesEnabled"/> is true.
</summary>
</member>
<member name="E:Syncfusion.Windows.Forms.Schedule.ScheduleAppearance.VisualStyleChanged">
<summary>
A notification event that is raised after VisualStyle is modified.
</summary>
</member>
<member name="P:Syncfusion.Windows.Forms.Schedule.ScheduleAppearance.EnableAdvancedToolTip">
<summary>
Gets or sets a value indicating whether the AdvancedToolTip display while hovering over the schedule Appointments.
</summary>
</member>
<member name="P:Syncfusion.Windows.Forms.Schedule.ScheduleAppearance.AllowProportionalColumnSizing">
<summary>
Gets or sets the propotional resizability option for the workweek scheduletype.
</summary>
</member>
<member name="P:Syncfusion.Windows.Forms.Schedule.ScheduleAppearance.EnableTransparentSpan">
<summary>
Gets or sets a value indicating whether the transparent Span appearance to schedule grid.
</summary>
</member>
<member name="P:Syncfusion.Windows.Forms.Schedule.ScheduleAppearance.SpanTransparencyLevel">
<summary>
Gets or sets the alpha level for transparent span.
</summary>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.ScheduleAppearance.ShouldSerializeSpanTransparencyLevel">
<summary>
Determines whether SpanTransparencyLevel has been modified and its contents should be serialized at design-time.
</summary>
<returns>True if contents were changed; False otherwise.</returns>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.ScheduleAppearance.ToString">
<summary>Gets a string representing the instance of the <see cref="T:Syncfusion.Windows.Forms.Schedule.ScheduleAppearance"/>.</summary>
<returns>String representaion of the object.</returns>
<override />
</member>
<member name="T:Syncfusion.Windows.Forms.Schedule.ScheduleGrid">
<summary>
A ScheduleGrid class illustrates the grid that holds the schedule items, possibly for multiple days.
</summary>
<remarks>
ScheduleGrid is a GridControl derived class that serves as the container for
the schedule items being displayed. Depending upon the ScheduleViewType
being displayed, this grid may show a single day's items or multiple days'
items. It has class members to reference the navigation calendars.
</remarks>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.ScheduleGrid.#ctor">
<summary>
Initializes a new instance of the <see cref="T:Syncfusion.Windows.Forms.Schedule.ScheduleGrid"/> class.
</summary>
</member>
<member name="P:Syncfusion.Windows.Forms.Schedule.ScheduleGrid.EnableTouchMode">
<summary>
Gets or sets the touch mode.
</summary>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.ScheduleGrid.ShouldSerializeTouchMode">
<summary>
Determines whether touch mode has to be serialized.
</summary>
<returns>True if touch mode is serialized otherwise false.</returns>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.ScheduleGrid.ResetTouchMode">
<summary>
Resets the touch mode to false.
</summary>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.ScheduleGrid.ApplyScaleToControl(System.Single)">
<summary>
Applies the scaling.
</summary>
<param name="sf">The value for scaling.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.ScheduleGrid.OnTouchPanBegin(System.Drawing.Point)">
<summary>
Save the touch starting position when begin the touch panning operation.
</summary>
<param name="touchBeginPoint">touch position when panning operation start</param>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.ScheduleGrid.OnTouchPan(System.Drawing.Point,System.Boolean)">
<summary>
Perform the horizontal panning operation by moving the next view or previous view, otherwise do the vertical panning operation by calling the base method.
</summary>
<param name="currentTouchPoint">Current touch position</param>
<param name="isSwipeScroll">used to decide the swipe scrolling operation occurs</param>
<returns>Returns false if view was changed with horizontal panning operation, otherwise calls the base method</returns>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.ScheduleGrid.OnMouseWheel(System.Windows.Forms.MouseEventArgs)">
<summary>
Handles mouse wheel processing. When EnableTouchMode was enabled and modifier key is control, then perform zoom operation.
</summary>
<param name="e">A <see cref="T:System.Windows.Forms.MouseEventArgs"/> that contains the event data.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.ScheduleGrid.ApplyZooming(System.Int32)">
<summary>
Perform the zoom in or zoom out operations based on the delta value.
</summary>
<param name="delta">The value used to decide zoom operation</param>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.ScheduleGrid.#ctor(Syncfusion.Windows.Forms.Schedule.NavigationCalendar,Syncfusion.Windows.Forms.Schedule.ScheduleControl,System.DateTime)">
<summary>
Initializes a new instance of the <see cref="T:Syncfusion.Windows.Forms.Schedule.ScheduleGrid"/> class.
</summary>
<param name="calendar">The <see cref="P:Syncfusion.Windows.Forms.Schedule.ScheduleGrid.Calendar"/> used to determine the dates displayed.</param>
<param name="schedule">Gets the <see cref="T:Syncfusion.Windows.Forms.Schedule.ScheduleControl"/> that hosts this ScheduleGrid.</param>
<param name="theDate">The date used to set the initial display.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.ScheduleGrid.CalenderGrid_DrawCellDisplayText(System.Object,Syncfusion.Windows.Forms.Grid.GridDrawCellDisplayTextEventArgs)">
<summary>
Used to set the horizontal and vertical alignments.
</summary>
<param name="sender">The source control.</param>
<param name="e">The <see cref="T:Syncfusion.Windows.Forms.Grid.GridDrawCellDisplayTextEventArgs"/> that contains the event data.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.ScheduleGrid.ParentForm_ResizeEnd(System.Object,System.EventArgs)">
<summary>
Used to set the date value and adjust the selected dates.
</summary>
<param name="sender">ScheduleGrid</param>
<param name="e">The <see cref="T:System.EventArgs"/> that contains the event data.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.ScheduleGrid.ParentForm_Resize(System.Object,System.EventArgs)">
<summary>
Used to set the date value and adjust the selected dates.
</summary>
<param name="sender">ScheduleGrid</param>
<param name="e">The <see cref="T:System.EventArgs"/> that contains the event data.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.ScheduleGrid.PerformResize">
<summary>
Sets the date value and adjust the selected dates while performing resize.
</summary>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.ScheduleGrid.DrawTriangle(System.Drawing.Graphics,System.Drawing.Rectangle,System.Drawing.Brush,System.Drawing.Brush)">
<summary>
Used to Draw a triangle.
</summary>
<param name="g">Graphics.</param>
<param name="rect">Rectangle.</param>
<param name="fillBrush">fill color of the triangle.</param>
<param name="border">border color of the triangle.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.ScheduleGrid.CalenderGrid_QueryCellInfo(System.Object,Syncfusion.Windows.Forms.Grid.GridQueryCellInfoEventArgs)">
<summary>
Used to set fort styles.
</summary>
<param name="sender">The source control.</param>
<param name="e">The <see cref="T:Syncfusion.Windows.Forms.Grid.GridQueryCellInfoEventArgs"/> that contains the event data.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.ScheduleGrid.Dispose(System.Boolean)">
<summary>
Cleans up any resources being used.
</summary>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.ScheduleGrid.InitializeComponent">
<summary>
Required method for Designer support - do not modify
the contents of this method with the code editor.
</summary>
</member>
<member name="P:Syncfusion.Windows.Forms.Schedule.ScheduleGrid.SpanManager">
<summary>
Gets the span manager.
</summary>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.ScheduleGrid.ClearAllDaySpans">
<summary>
Clears the spans of all day.
</summary>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.ScheduleGrid.GetScheduledDates">
<summary>
Gets all the appointment scheduled dates.
</summary>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.ScheduleGrid.AddAllDaySpan(System.Drawing.Rectangle,System.Drawing.Rectangle,Syncfusion.Schedule.IRecurringScheduleAppointment,System.Boolean,Syncfusion.Windows.Forms.Grid.GridStyleInfo)">
<summary>
Adds the all day span for specified recurring appointment.
</summary>
<param name="originalRect">The source rectangle.</param>
<param name="rect">The rectangle.</param>
<param name="appointment">Recurring schedule appointment.</param>
<param name="lastColumn">Indicates whether column is in last position.</param>
<param name="style">Cell style.</param>
<returns></returns>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.ScheduleGrid.PopulateTranparentLabel(System.Drawing.Rectangle,Syncfusion.Windows.Forms.Schedule.TranparentLabel,System.Drawing.Rectangle,System.Int32,Syncfusion.Schedule.IRecurringScheduleAppointment,System.DateTime,System.DateTime)">
<summary>
Populates the transparent label for appointment.
</summary>
<param name="originalRect">The source rectangle.</param>
<param name="l">The transparent label.</param>
<param name="rect">The rectangle.</param>
<param name="width">Width.</param>
<param name="appointment">Recurring schedule appointment.</param>
<param name="d">The date.</param>
<param name="start">Start date.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.ScheduleGrid.ScheduleGrid_MouseEnter(System.Object,System.EventArgs)">
<summary>
Used to set the mouse move label.
</summary>
<param name="sender">The source control.</param>
<param name="e">The <see cref="T:System.EventArgs"/> that contains the event data.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.ScheduleGrid.l_MouseLeave(System.Object,System.EventArgs)">
<summary>
Used to set the mouse leave label.
</summary>
<param name="sender">The source control.</param>
<param name="e">The <see cref="T:System.EventArgs"/> that contains the event data.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.ScheduleGrid.l_MouseDown(System.Object,System.Windows.Forms.MouseEventArgs)">
<summary>
Used to set the mouse move label.
</summary>
<param name="sender">The source control.</param>
<param name="e">The <see cref="T:System.Windows.Forms.MouseEventArgs"/> that contains the event data.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.ScheduleGrid.l_DoubleClick(System.Object,System.EventArgs)">
<summary>
Used to edit the item.
</summary>
<param name="sender">The source control.</param>
<param name="e">The <see cref="T:System.EventArgs"/> that contains the event data.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.ScheduleGrid.l_MouseDoubleClick(System.Object,System.Windows.Forms.MouseEventArgs)">
<summary>
Used to edit the item.
</summary>
<param name="sender">The source control.</param>
<param name="e">The <see cref="T:System.Windows.Forms.MouseEventArgs"/> that contains the event data.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.ScheduleGrid.l_MouseClick(System.Object,System.Windows.Forms.MouseEventArgs)">
<summary>
Handles the mouse click event related to the item.
</summary>
<param name="sender">The source control.</param>
<param name="e">The <see cref="T:System.Windows.Forms.MouseEventArgs"/> that contains the event data.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.ScheduleGrid.l_MouseMove(System.Object,System.Windows.Forms.MouseEventArgs)">
<summary>
as the user hovers the mouse over an item.
</summary>
<param name="sender">The source control.</param>
<param name="e">The <see cref="T:System.Windows.Forms.MouseEventArgs"/> that contains the event data.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.ScheduleGrid.l_MouseUp(System.Object,System.Windows.Forms.MouseEventArgs)">
<summary>
Used to find user releases the mouse click.
</summary>
<param name="sender">The source control.</param>
<param name="e">The <see cref="T:System.Windows.Forms.MouseEventArgs"/> that contains the event data.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.ScheduleGrid.l_MouseHover(System.Object,System.EventArgs)">
<summary>
Handles the mouse hover event to detect when the user hovers over a control.
</summary>
<param name="sender">The source control.</param>
<param name="e">The <see cref="T:System.EventArgs"/> that contains the event data.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.ScheduleGrid.GetMousePoint(System.Object,System.Windows.Forms.MouseEventArgs)">
<summary>
Gets the mouse position relative to the current form.
</summary>
<param name="sender">The source control.</param>
<param name="e">The <see cref="T:System.Windows.Forms.MouseEventArgs"/> that contains the event data.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.ScheduleGrid.UpdateScrollBars">
<summary>
Overridden to make sure no horizontal scrollbar is seen after sizing...
</summary>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.ScheduleGrid.OnSizeChanged(System.EventArgs)">
<summary>
Overridden to center text at the top of the grid.
</summary>
<param name="e">The <see cref="T:System.EventArgs"/> that contains the event data.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.ScheduleGrid.convertToDateTime(System.String,System.Boolean)">
<summary>
Converts the current month and date
</summary>
<param name="date">Date to be parsed</param>
<param name="isFirstCell">If the row index and column index of the cell is 1</param>
<returns>True if the row index and column index is 1, otherwise, False</returns>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.ScheduleGrid.OnDrawCellDisplayText(Syncfusion.Windows.Forms.Grid.GridDrawCellDisplayTextEventArgs)">
<summary>
Overridden to support displaying appointments with rounded corners
</summary>
<param name="e">The <see cref="T:System.EventArgs"/> that contains the event data.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.ScheduleGrid.GetTextColor(System.Drawing.Color,Syncfusion.Windows.Forms.Grid.GridStyleInfo)">
<summary>
Gets the forecolor of Appointment item.
</summary>
<param name="foreColor">Item Forecolor</param>
<param name="style">Holds the cell style</param>
<returns>Returns the fore color of appointment</returns>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.ScheduleGrid.OnPrepareViewStyleInfo(Syncfusion.Windows.Forms.Grid.GridPrepareViewStyleInfoEventArgs)">
<summary>
Used to change the default behavior of the OnPrepareViewStyleInfo event
</summary>
<param name="e">The <see cref="T:Syncfusion.Windows.Forms.Grid.GridPrepareViewStyleInfoEventArgs"/> that contains the event data.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.ScheduleGrid.GetFormattedString(System.DateTime,System.String)">
<summary>
Gets a date formatted as a MMMM d, yyyy that is displayed in a Month view.
</summary>
<param name="dt">The given date.</param>
<param name="format">The string that provides the format.</param>
<returns>The formatted string.</returns>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.ScheduleGrid.OnQueryCellInfo(Syncfusion.Windows.Forms.Grid.GridQueryCellInfoEventArgs)">
<summary>
Overridden to support the appointment being displayed with rounded corners.
</summary>
<param name="e">The <see cref="T:Syncfusion.Windows.Forms.Grid.GridQueryCellInfoEventArgs"/> that contains the event data.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.ScheduleGrid.WireEvents(Syncfusion.Windows.Forms.Schedule.ScheduleViewType)">
<summary>
Triggers the various event of schedule grid.
</summary>
<param name="t">View type of the schedule.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.ScheduleGrid.DrawRoundedBackGround(System.Drawing.Graphics,System.Drawing.Rectangle,System.Int32,System.Drawing.Color)">
<summary>
Draws the rounded background.
</summary>
<param name="g">The graphics of the cell.</param>
<param name="rect">The Rectangle of the cell.</param>
<param name="radius">Radius for rounded button.</param>
<param name="c">Color of the rounded button.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.ScheduleGrid.DrawRoundedBackGround(System.Drawing.Graphics,System.Drawing.Rectangle,System.Int32,System.Drawing.Color,System.Drawing.Pen)">
<summary>
Draws the rounded background.
</summary>
<param name="g">The graphics of the cell.</param>
<param name="rect">The Rectangle of the cell.</param>
<param name="radius">Radius for rounded button.</param>
<param name="c">Color of the rounded button.</param>
<param name="p1">Pen for the rounded button.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.ScheduleGrid.DrawRoundRect(System.Single,System.Single,System.Single,System.Single,System.Single)">
<summary>
Draws rounded rectangle specified by a co-ordinate pair, width, height and radius.
</summary>
<param name="X">X co-ordinate.</param>
<param name="Y">Y co-ordinate.</param>
<param name="width">Width of the rectangle.</param>
<param name="height">Height of the rectangle.</param>
<param name="radius">Radius of the rounded corners.</param>
<returns>The GraphicsPath object for the rounded rectangle.</returns>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.ScheduleGrid.ParentFormClosing(System.Object,System.ComponentModel.CancelEventArgs)">
<summary>
A method to commit changes while closing parent control.
</summary>
<param name="sender">Parent Form</param>
<param name="e">A <see cref="T:System.ComponentModel.CancelEventArgs"/> with event data.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.ScheduleGrid.WireAppearanceEvents(Syncfusion.Windows.Forms.Schedule.ScheduleAppearance)">
<summary>
Wires the events of the appearance.
</summary>
<param name="appearance">The schedule to wire events.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.ScheduleGrid.UnwireAppearanceEvents(Syncfusion.Windows.Forms.Schedule.ScheduleAppearance)">
<summary>
Unwire the events of the appearance.
</summary>
<param name="appearance">The schedule to unwire events.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.ScheduleGrid.UnwireEvents(Syncfusion.Windows.Forms.Schedule.ScheduleViewType)">
<summary>
Unwire the events of the schedule view type.
</summary>
<param name="t">The schedule view type to wire events.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.ScheduleGrid.SetupChildControls">
<summary>
Initializes the <see cref="T:Syncfusion.Windows.Forms.Schedule.ScheduleGrid"/> through its GridControl properties and events.
</summary>
<remarks>
This methods initializes to various GridControl properties, cell types and mouse controllers to
support the functionality in ScheduleGrid.
</remarks>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.ScheduleGrid.Appearance_WorkWeekHeaderBackColorChanged(System.Object,System.EventArgs)">
<summary>
Used to set brush info.
</summary>
<param name="sender">The source control.</param>
<param name="e">The <see cref="T:System.EventArgs"/> that contains the event data.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.ScheduleGrid.week_FormatChanged(System.Object,System.EventArgs)">
<summary>
Used to force data to be regenerated.
</summary>
<param name="sender">The source control.</param>
<param name="e">The <see cref="T:System.EventArgs"/> that contains the event data.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.ScheduleGrid.appearance_WeekMonthFullFormatChanged(System.Object,System.EventArgs)">
<summary>
Used to force data to be regenerated.
</summary>
<param name="sender">The source control.</param>
<param name="e">The <see cref="T:System.EventArgs"/> that contains the event data.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.ScheduleGrid.appearance_WeekMonthNewMonthChanged(System.Object,System.EventArgs)">
<summary>
Used to force data to be regenerated.
</summary>
<param name="sender">The source control.</param>
<param name="e">The <see cref="T:System.EventArgs"/> that contains the event data.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.ScheduleGrid.appearance_MonthHeaderFormatChanged(System.Object,System.EventArgs)">
<summary>
Used to force data to be regenerated.
</summary>
<param name="sender">The source control.</param>
<param name="e">The <see cref="T:System.EventArgs"/> that contains the event data.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.ScheduleGrid.appearance_WorkWeekHeaderFormatChanged(System.Object,System.EventArgs)">
<summary>
Used to force data to be regenerated.
</summary>
<param name="sender">The source control.</param>
<param name="e">The <see cref="T:System.EventArgs"/> that contains the event data.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.ScheduleGrid.appearance_LongHeaderFormatChanged(System.Object,System.EventArgs)">
<summary>
Used to force data to be regenerated.
</summary>
<param name="sender">The source control.</param>
<param name="e">The <see cref="T:System.EventArgs"/> that contains the event data.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.ScheduleGrid.appearance_VisualStyleChanged(System.Object,System.EventArgs)">
<summary>
Used to apply the visual styles.
</summary>
<param name="sender">The source control.</param>
<param name="e">The <see cref="T:System.EventArgs"/> that contains the event data.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.ScheduleGrid.appearance_FullWeekHeaderFormatChanged(System.Object,System.EventArgs)">
<summary>
Used to force data to be regenerated.
</summary>
<param name="sender">The source control.</param>
<param name="e">The <see cref="T:System.EventArgs"/> that contains the event data.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.ScheduleGrid.appearance_WeekHeaderFormatChanged(System.Object,System.EventArgs)">
<summary>
Used to force data to be regenerated.
</summary>
<param name="sender">The source control.</param>
<param name="e">The <see cref="T:System.EventArgs"/> that contains the event data.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.ScheduleGrid.appearance_MonthCalendarStartDayOfWeekChanged(System.Object,System.EventArgs)">
<summary>
Used to force data to be regenerated.
</summary>
<param name="sender">The source control.</param>
<param name="e">The <see cref="T:System.EventArgs"/> that contains the event data.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.ScheduleGrid.appearance_WeekCalendarStartDayOfWeekChanged(System.Object,System.EventArgs)">
<summary>
Used to force data to be regenerated.
</summary>
<param name="sender">The source control.</param>
<param name="e">The <see cref="T:System.EventArgs"/> that contains the event data.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.ScheduleGrid.appearance_NavigationCalendarStartDayOfWeekChanged(System.Object,System.EventArgs)">
<summary>
Used to force data to be regenerated.
</summary>
<param name="sender">The source control.</param>
<param name="e">The <see cref="T:System.EventArgs"/> that contains the event data.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.ScheduleGrid.appearance_DragColorChanged(System.Object,System.EventArgs)">
<summary>
Used to set the drag color.
</summary>
<param name="sender">The source control.</param>
<param name="e">The <see cref="T:System.EventArgs"/> that contains the event data.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.ScheduleGrid.appearance_SplitterBackColorChanged(System.Object,System.EventArgs)">
<summary>
Used to set the splitter backcolor.
</summary>
<param name="sender">The source control.</param>
<param name="e">The <see cref="T:System.EventArgs"/> that contains the event data.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.ScheduleGrid.Appearance_NonPrimeTimeCellColorChanged(System.Object,System.EventArgs)">
<summary>
Used to backcolor of off time cells.
</summary>
<param name="sender">The source control.</param>
<param name="e">The <see cref="T:System.EventArgs"/> that contains the event data.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.ScheduleGrid.Appearance_PrimeTimeCellColorChanged(System.Object,System.EventArgs)">
<summary>
Used to backcolor of prime time cells.
</summary>
<param name="sender">The source control.</param>
<param name="e">The <see cref="T:System.EventArgs"/> that contains the event data.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.ScheduleGrid.Appearance_ShowCaptionButtonsChanged(System.Object,System.EventArgs)">
<summary>
Used to visibility of the next and previous buttons.
</summary>
<param name="sender">The source control.</param>
<param name="e">The <see cref="T:System.EventArgs"/> that contains the event data.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.ScheduleGrid.Appearance_ThemeEnabledChanged(System.Object,System.EventArgs)">
<summary>
Used to set the themes enabled of the next and previous buttons.
</summary>
<param name="sender">The source control.</param>
<param name="e">The <see cref="T:System.EventArgs"/> that contains the event data.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.ScheduleGrid.Appearance_ShowCaptionChanged(System.Object,System.EventArgs)">
<summary>
Used to visibility of the Caption panel.
</summary>
<param name="sender">The source control.</param>
<param name="e">The <see cref="T:System.EventArgs"/> that contains the event data.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.ScheduleGrid.Appearance_NavigationCalendarBackColorChanged(System.Object,System.EventArgs)">
<summary>
Used to set the backcolor of the schedule grid and navigation calendar.
</summary>
<param name="sender">The source control.</param>
<param name="e">The <see cref="T:System.EventArgs"/> that contains the event data.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.ScheduleGrid.Appearance_AllDayBackColorChanged(System.Object,System.EventArgs)">
<summary>
Used to set the backcolor of the all day schedule grid.
</summary>
<param name="sender">The source control.</param>
<param name="e">The <see cref="T:System.EventArgs"/> that contains the event data.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.ScheduleGrid.Appearance_SolidBorderColorChanged(System.Object,System.EventArgs)">
<summary>
Used to set the solid border of the schedule grid.
</summary>
<param name="sender">The source control.</param>
<param name="e">The <see cref="T:System.EventArgs"/> that contains the event data.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.ScheduleGrid.ApplySolidBorder">
<summary>
Applies the border for the schedule grid.
</summary>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.ScheduleGrid.Appearance_CaptionBackColorChanged(System.Object,System.EventArgs)">
<summary>
Used to set the backcolor of the caption panel and panel spacer.
</summary>
<param name="sender">The source control.</param>
<param name="e">The <see cref="T:System.EventArgs"/> that contains the event data.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.ScheduleGrid.Appearance_TimeBigFontSizeChanged(System.Object,System.EventArgs)">
<summary>
Used to reset the time.
</summary>
<param name="sender">The source control.</param>
<param name="e">The <see cref="T:System.EventArgs"/> that contains the event data.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.ScheduleGrid.Appearance_TimeBackColorChanged(System.Object,System.EventArgs)">
<summary>
Used to set the backcolor of the time column of the schedule grid.
</summary>
<param name="sender">The source control.</param>
<param name="e">The <see cref="T:System.EventArgs"/> that contains the event data.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.ScheduleGrid.SetBaseStyle(System.Int32)">
<summary>
Sets the base styles from specified row.
</summary>
<param name="startRow">the starting row.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.ScheduleGrid.Appearance_PrimeTimeEndChanged(System.Object,System.EventArgs)">
<summary>
Used to set the base style for each row in schedule grid.
</summary>
<param name="sender">The source control.</param>
<param name="e">The <see cref="T:System.EventArgs"/> that contains the event data.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.ScheduleGrid.Appearance_TextColorChanged(System.Object,System.EventArgs)">
<summary>
Used to set the text color of the schedule grid.
</summary>
<param name="sender">The source control.</param>
<param name="e">The <see cref="T:System.EventArgs"/> that contains the event data.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.ScheduleGrid.appearance_DivisionsPerHourChanged(System.Object,System.EventArgs)">
<summary>
Used to set the minutes per hour.
</summary>
<param name="sender">The source control.</param>
<param name="e">The <see cref="T:System.EventArgs"/> that contains the event data.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.ScheduleGrid.appearance_MonthShowFullWeekChanged(System.Object,System.EventArgs)">
<summary>
Used to switch the schedule to Month view.
</summary>
<param name="sender">The source control.</param>
<param name="e">The <see cref="T:System.EventArgs"/> that contains the event data.</param>
</member>
<member name="P:Syncfusion.Windows.Forms.Schedule.ScheduleGrid.StartDayOfWeekWeekCalendar">
<summary>
Gets the start day of the week in week calendar.
</summary>
</member>
<member name="P:Syncfusion.Windows.Forms.Schedule.ScheduleGrid.StartDayOfWeekMonthCalendar">
<summary>
Gets the start day of the week in month calendar.
</summary>
</member>
<member name="P:Syncfusion.Windows.Forms.Schedule.ScheduleGrid.LastDayOfWeekMonthCalendar">
<summary>
Gets the last day of the week in month calendar.
</summary>
</member>
<member name="P:Syncfusion.Windows.Forms.Schedule.ScheduleGrid.MaxConflicts">
<summary>
Sets the maximum appointment for ScheduleControl.
</summary>
<remarks>
Used to set 'how many appointment will be shown in schedule'. set minimum value for this if you use maximum value, it will decrease the performance of schedule grid.
</remarks>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.ScheduleGrid.SetupGrid">
<summary>
Sets the schedule grid.
</summary>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.ScheduleGrid.GetUseTableFromCol(System.Int32)">
<summary>
Gets the table from column index.
</summary>
<param name="col">Column index.</param>
<returns>An index of the table.</returns>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.ScheduleGrid.MarkCol(System.Int32)">
<summary>
Determines whether specified column is marker column.
</summary>
<param name="col">Column index to check.</param>
<returns>True if it is marker column otherwise false.</returns>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.ScheduleGrid.GetFirstColInPanelFromCol(System.Int32)">
<summary>
Gets the first column in panel for specified column.
</summary>
<param name="col">Column index to check.</param>
<returns>Column index.</returns>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.ScheduleGrid.GetLastColInPanelFromCol(System.Int32)">
<summary>
Gets the last column in panel for specified column.
</summary>
<param name="col">Column index to check.</param>
<returns>Column index.</returns>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.ScheduleGrid.ApplyVisualStyle">
<summary>
Applies the visual styles.
</summary>
</member>
<member name="F:Syncfusion.Windows.Forms.Schedule.ScheduleGrid.style">
<summary>
Gets or sets the visual theme.
</summary>
</member>
<member name="P:Syncfusion.Windows.Forms.Schedule.ScheduleGrid.MoreItemsBitmap">
<summary>
Gets the bitmap drawn when day on a Week or Month ScheduleViewType has more items
than can be displayed in the grid cell for that day.
</summary>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.ScheduleGrid.GetBitmap(System.String)">
<summary>
Gets the bitmap drawn.
</summary>
<param name="bmpName">Name of the bitmap.</param>
<returns>The bitmap drawn.</returns>
</member>
<member name="F:Syncfusion.Windows.Forms.Schedule.ScheduleGrid.ScheduleAppointmentFromRange">
<summary>
Maps a GridRangeInfo to an IScheduleAppointment through GetLookupKey
</summary>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.ScheduleGrid.GetLookupKey(System.Int32,System.Int32)">
<summary>
Gets the lookup key that maps GridRangeInfo to an IScheduleAppointment.
</summary>
<param name="rowIndex">the top-most row of the GridRangeInfo.</param>
<param name="colIndex">the left-most column of the GridrangeInfo.</param>
<returns>A value unique to the passed in parameters.</returns>
</member>
<member name="F:Syncfusion.Windows.Forms.Schedule.ScheduleGrid.useTable">
<summary>
Used to track occupied cells and conflicts. The
triples are(dayPanel, gridrow, confictCount).
</summary>
</member>
<member name="F:Syncfusion.Windows.Forms.Schedule.ScheduleGrid.knownConflicts">
<summary>
Tracks the known conflicts per dayPanel. ie; knownConflicts[i] is
the largest number of conflicts for any timeslot in the ith dayPanel.
</summary>
</member>
<member name="F:Syncfusion.Windows.Forms.Schedule.ScheduleGrid.holes">
<summary>
A hole is a range to the right of a long IScheduleAppointment with conflicts
which is not occupied by one of the conflicting IScheduleAppointments. Such
wholes are treated as a coveredrange in the grid.
</summary>
</member>
<member name="F:Syncfusion.Windows.Forms.Schedule.ScheduleGrid.allDayAndSpanItems">
<summary>
A list of lists of AllDay items. ie., allDayItems[i] is an arraylist holding
all the AllDay items for the ith dayPanel.
</summary>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.ScheduleGrid.SyncGridWithAllDayAndSpanList">
<summary>
Synchronizes the grid with all day and span list.
</summary>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.ScheduleGrid.SetupCoveredCells">
<summary>
Implements the algorithm that sets up the covered cells in the grid
to represent the times associated with each IScheduleAppointment. It handles
conflict allocations as well.
</summary>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.ScheduleGrid.MarkHolesAsRanges">
<summary>
Computes GridRangeInfo's in a conflicted time-span that does not have
any appointments displayed in them. ie-holes in the dayPanel next to
occupied cells.
</summary>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.ScheduleGrid.DisplayUseTable">
<summary>
Used only for debug purposes to display the use table.
</summary>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.ScheduleGrid.SetDataToDayPanels">
<summary>
Gets IScheduleAppointments from the IDateProvider based on the parameters passed in through
the <see cref="T:Syncfusion.Windows.Forms.Schedule.ScheduleGrid"/> constructor and uses these IScheduleAppointments to populate
this ScheduleGrid with day panels.
</summary>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.ScheduleGrid.SetDataToDayPanels(System.Boolean)">
<summary>
Sets the data to day panels.
</summary>
<param name="resetData">Indicates whether data should be reset.</param>
</member>
<member name="E:Syncfusion.Windows.Forms.Schedule.ScheduleGrid.GridSetUpCompleted">
<summary>
Occurs when the GridControl that displays the multiple day panels
has completed its formatting and has been populated.
</summary>
<remarks>
This event is an notification event that this GridControl
has been fully initialized. At this point, you can modify any of
the GridControl's standard properties, and your change will take precedence
over the existing settings.
</remarks>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.ScheduleGrid.OnGridSetUpCompleted(System.EventArgs)">
<summary>
Raises the <see cref="E:Syncfusion.Windows.Forms.Schedule.ScheduleGrid.GridSetUpCompleted"/> event.
</summary>
<param name="e">The <see cref="T:System.EventArgs"/> that contains the event data.</param>
</member>
<member name="E:Syncfusion.Windows.Forms.Schedule.ScheduleGrid.SetDefaultItemProperties">
<summary>
Allows you to set the default properties on a new schedule items.
</summary>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.ScheduleGrid.OnSetDefaultItemProperties(Syncfusion.Schedule.IScheduleAppointment)">
<summary>
Sets initial default values on a schedule item and raises the <see cref="E:Syncfusion.Windows.Forms.Schedule.ScheduleGrid.SetDefaultItemProperties"/> event
to allow listeners the option of setting default values.
</summary>
<param name="item">The <see cref="T:Syncfusion.Schedule.ScheduleAppointmentEventArgs"/> holding the proposed current value of the schedule item.</param>
</member>
<member name="F:Syncfusion.Windows.Forms.Schedule.ScheduleGrid.allDayGrids">
<summary>
Array on cell grids that hold the all day appointments at top of a ScheduleGrid
</summary>
</member>
<member name="F:Syncfusion.Windows.Forms.Schedule.ScheduleGrid.displayDate">
<summary>
The date that determines the date range displayed in the ScheduleGrid.
</summary>
</member>
<member name="F:Syncfusion.Windows.Forms.Schedule.ScheduleGrid.displayDates">
<summary>
The determining dates of the day panels that are in this ScheduleGrid.
</summary>
</member>
<member name="F:Syncfusion.Windows.Forms.Schedule.ScheduleGrid.activePanel">
<summary>
The active day panel
</summary>
</member>
<member name="F:Syncfusion.Windows.Forms.Schedule.ScheduleGrid.numberPanels">
<summary>
number of day panels in this ScheduleGrid
</summary>
</member>
<member name="F:Syncfusion.Windows.Forms.Schedule.ScheduleGrid.alphaBlendSelectionColor">
<summary>
Color used to mark selections in an individual day panel.
</summary>
</member>
<member name="F:Syncfusion.Windows.Forms.Schedule.ScheduleGrid.timeWidth">
<summary>
Width of the time column on the left side of the ScheduleGrid
</summary>
</member>
<member name="F:Syncfusion.Windows.Forms.Schedule.ScheduleGrid.topOccupiedMargin">
<summary>
width of the top-most cell border of an occupied range in a day panel.
</summary>
</member>
<member name="F:Syncfusion.Windows.Forms.Schedule.ScheduleGrid.rowHeight0">
<summary>
Height of row0 (row 0)
</summary>
</member>
<member name="F:Syncfusion.Windows.Forms.Schedule.ScheduleGrid.allDayGridDefaultRowHeight">
<summary>
default height of the rows inside the embedded all day grids.
</summary>
</member>
<member name="F:Syncfusion.Windows.Forms.Schedule.ScheduleGrid.rowHeightAllDayRow">
<summary>
height of the cell that holds the embedded all day grids.
</summary>
</member>
<member name="F:Syncfusion.Windows.Forms.Schedule.ScheduleGrid.allDayRow">
<summary>
row holding the all day grids
</summary>
</member>
<member name="F:Syncfusion.Windows.Forms.Schedule.ScheduleGrid.row0">
<summary>
the caption row
</summary>
</member>
<member name="F:Syncfusion.Windows.Forms.Schedule.ScheduleGrid.row0BrushInfo">
<summary>
caches the brushinfo used to draw the caption row gradient
</summary>
</member>
<member name="F:Syncfusion.Windows.Forms.Schedule.ScheduleGrid.markWidth">
<summary>
width of the occupied marker column
</summary>
</member>
<member name="F:Syncfusion.Windows.Forms.Schedule.ScheduleGrid.markCol">
<summary>
col index of the marker column
</summary>
</member>
<member name="F:Syncfusion.Windows.Forms.Schedule.ScheduleGrid.timeCol">
<summary>
col index of the time col
</summary>
</member>
<member name="F:Syncfusion.Windows.Forms.Schedule.ScheduleGrid.noBottomBorder">
<summary>
BorderStyle.None border - used in marker column
</summary>
</member>
<member name="F:Syncfusion.Windows.Forms.Schedule.ScheduleGrid.solidBorder">
<summary>
a solid border - used in time column
</summary>
</member>
<member name="F:Syncfusion.Windows.Forms.Schedule.ScheduleGrid.columnHeaderText">
<summary>
holds text used in the Schedule.HeaderLabel
</summary>
</member>
<member name="P:Syncfusion.Windows.Forms.Schedule.ScheduleGrid.ColumnHeaderDate">
<summary>
Gets or sets the column header date.
</summary>
</member>
<member name="F:Syncfusion.Windows.Forms.Schedule.ScheduleGrid.resetTimeRects">
<summary>
internal flag indicates whether the space required for displaying the large and small text in the time col needs to be reset.
</summary>
</member>
<member name="F:Syncfusion.Windows.Forms.Schedule.ScheduleGrid.timeLargeSize">
<summary>
size of the large text in the time col display
</summary>
</member>
<member name="F:Syncfusion.Windows.Forms.Schedule.ScheduleGrid.timeSmallSize">
<summary>
size of the small text in the time col display
</summary>
</member>
<member name="F:Syncfusion.Windows.Forms.Schedule.ScheduleGrid._scheduleDataList">
<summary>
holds the currently loaded IScheduleAppointment objects
</summary>
</member>
<member name="P:Syncfusion.Windows.Forms.Schedule.ScheduleGrid.scheduleDataList">
<summary>
Gets or sets the schedule appointment data collection.
</summary>
</member>
<member name="F:Syncfusion.Windows.Forms.Schedule.ScheduleGrid.coveredCells">
<summary>
holds the covered cells used in marking schedule items in the day panels.
</summary>
</member>
<member name="F:Syncfusion.Windows.Forms.Schedule.ScheduleGrid.calendar">
<summary>
The NavigationCalendar used to determine the dates displayed in this ScheduleGrid.
</summary>
</member>
<member name="P:Syncfusion.Windows.Forms.Schedule.ScheduleGrid.Calendar">
<summary>
Gets the NavigationCalendar used to determine the dates displayed.
</summary>
</member>
<member name="F:Syncfusion.Windows.Forms.Schedule.ScheduleGrid.schedule">
<summary>
The ScheduleControl that hosts this ScheduleGrid.
</summary>
</member>
<member name="P:Syncfusion.Windows.Forms.Schedule.ScheduleGrid.Schedule">
<summary>
Gets the ScheduleControl that hosts this <see cref="T:Syncfusion.Windows.Forms.Schedule.ScheduleGrid"/>.
</summary>
</member>
<member name="P:Syncfusion.Windows.Forms.Schedule.ScheduleGrid.DataSource">
<summary>
Gets or sets the IScheduleDataProvider data source for this ScheduleControl.
</summary>
</member>
<member name="P:Syncfusion.Windows.Forms.Schedule.ScheduleGrid.SelectedAppointments">
<summary>
Gets the IScheduleAppointment selected appointments collections.
</summary>
</member>
<member name="P:Syncfusion.Windows.Forms.Schedule.ScheduleGrid.ScheduleType">
<summary>
Gets or sets the whether a daily, weekly or monthly schedule is displayed.
</summary>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.ScheduleGrid.Grid_QueryColWidth(System.Object,Syncfusion.Windows.Forms.Grid.GridRowColSizeEventArgs)">
<summary>
Determines column widths dynamically.
</summary>
<param name="sender">Source of the event.</param>
<param name="e">The <see cref="T:Syncfusion.Windows.Forms.Grid.GridRowColSizeEventArgs"/> that contains the event data.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.ScheduleGrid.Grid_QueryRowHeight(System.Object,Syncfusion.Windows.Forms.Grid.GridRowColSizeEventArgs)">
<summary>
Determines the row heights dynamically.
</summary>
<param name="sender">the source control.</param>
<param name="e">The <see cref="T:Syncfusion.Windows.Forms.Grid.GridRowColSizeEventArgs"/> that contains the event data.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.ScheduleGrid.Grid_QueryRowHeightDay(System.Object,Syncfusion.Windows.Forms.Grid.GridRowColSizeEventArgs)">
<summary>
Determines the row heights dynamically.
</summary>
<param name="sender">the source control.</param>
<param name="e">The <see cref="T:Syncfusion.Windows.Forms.Grid.GridRowColSizeEventArgs"/> that contains the event data.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.ScheduleGrid.Grid_QueryCellInfo(System.Object,Syncfusion.Windows.Forms.Grid.GridQueryCellInfoEventArgs)">
<summary>
Provides cell look and values dynamically.
</summary>
<param name="sender">The source control.</param>
<param name="e">The <see cref="T:Syncfusion.Windows.Forms.Grid.GridQueryCellInfoEventArgs"/> that contains the event data.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.ScheduleGrid.FixTextRectangle(Syncfusion.Windows.Forms.Grid.GridControl,Syncfusion.Windows.Forms.Grid.GridDrawCellDisplayTextEventArgs)">
<summary>
Fixes the test rectangle size.
</summary>
<param name="grid">The source control.</param>
<param name="e">The <see cref="T:Syncfusion.Windows.Forms.Grid.GridDrawCellDisplayTextEventArgs"/> that contains the event data.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.ScheduleGrid.allDayGrid_DrawCellDisplayText(System.Object,Syncfusion.Windows.Forms.Grid.GridDrawCellDisplayTextEventArgs)">
<summary>
Draws the cell text in the all day cell at the top of the schedule
</summary>
<param name="sender">The source control.</param>
<param name="e">The <see cref="T:Syncfusion.Windows.Forms.Grid.GridDrawCellDisplayTextEventArgs"/> that contains the event data.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.ScheduleGrid.Grid_DrawCellDisplayText(System.Object,Syncfusion.Windows.Forms.Grid.GridDrawCellDisplayTextEventArgs)">
<summary>
Draws the wrapped text in the week and month display.
</summary>
<param name="sender">The source control.</param>
<param name="e">The <see cref="T:Syncfusion.Windows.Forms.Grid.GridDrawCellDisplayTextEventArgs"/> that contains the event data.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.ScheduleGrid.Grid_TopRowChanged(System.Object,Syncfusion.Windows.Forms.Grid.GridRowColIndexChangedEventArgs)">
<summary>
Used to handle redraw column ranges.
</summary>
<param name="sender">The source control.</param>
<param name="e">The <see cref="T:Syncfusion.Windows.Forms.Grid.GridRowColIndexChangedEventArgs"/> that contains the event data.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.ScheduleGrid.Grid_QueryCoveredRange(System.Object,Syncfusion.Windows.Forms.Grid.GridQueryCoveredRangeEventArgs)">
<summary>
Used to add the covered ranges.
</summary>
<param name="sender">The source control.</param>
<param name="e">The <see cref="T:Syncfusion.Windows.Forms.Grid.GridQueryCoveredRangeEventArgs"/> that contains the event data.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.ScheduleGrid.Grid_CellDrawn(System.Object,Syncfusion.Windows.Forms.Grid.GridDrawCellEventArgs)">
<summary>
Used to do final decoration of the cell
</summary>
<param name="sender">The source control.</param>
<param name="e">The <see cref="T:Syncfusion.Windows.Forms.Grid.GridQueryCoveredRangeEventArgs"/> that contains the event data.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.ScheduleGrid.Grid_CurrentCellStartEditing(System.Object,System.ComponentModel.CancelEventArgs)">
<summary>
Used to cancel the cell editing.
</summary>
<param name="sender">The source control.</param>
<param name="e">The <see cref="T:System.ComponentModel.EventArgs"/> that contains the event data.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.ScheduleGrid.Grid_SaveCellInfo(System.Object,Syncfusion.Windows.Forms.Grid.GridSaveCellInfoEventArgs)">
<summary>
Used to handle saving changes.
</summary>
<param name="sender">The source control.</param>
<param name="e">The <see cref="T:Syncfusion.Windows.Forms.Grid.GridSaveCellInfoEventArgs"/> that contains the event data.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.ScheduleGrid.Grid_ResizingRows(System.Object,Syncfusion.Windows.Forms.Grid.GridResizingRowsEventArgs)">
<summary>
A method to control the hit testing for sizing schedule items in Day and WorkWeek view.
</summary>
<param name="sender">Schedule Grid.</param>
<param name="e">A <see cref="T:Syncfusion.Windows.Forms.Grid.GridResizingRowsEventArgs"/> with event data.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.ScheduleGrid.Grid_NoResizingColumns(System.Object,Syncfusion.Windows.Forms.Grid.GridResizingColumnsEventArgs)">
<summary>
Used to turn off sizing in all grids other than Day, Custom and WorkWeek.
</summary>
<param name="sender">The source control.</param>
<param name="e">The <see cref="T:Syncfusion.Windows.Forms.Grid.GridResizingColumnsEventArgs"/> that contains the event data.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.ScheduleGrid.Grid_NoResizingRows(System.Object,Syncfusion.Windows.Forms.Grid.GridResizingRowsEventArgs)">
<summary>
Used to turn off sizing in all grids other than Day, Custom and WorkWeek
</summary>
<param name="sender">The source control.</param>
<param name="e">The <see cref="T:Syncfusion.Windows.Forms.Grid.GridResizingRowsEventArgs"/> that contains the event data.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.ScheduleGrid.Grid_ResizingColumns(System.Object,Syncfusion.Windows.Forms.Grid.GridResizingColumnsEventArgs)">
<summary>
Used to turn off sizing in all grids other than Day, Custom and WorkWeek
</summary>
<param name="sender">The source control.</param>
<param name="e">The <see cref="T:Syncfusion.Windows.Forms.Grid.GridResizingColumnsEventArgs"/> that contains the event data.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.ScheduleGrid.Grid_SelectionChanging(System.Object,Syncfusion.Windows.Forms.Grid.GridSelectionChangingEventArgs)">
<summary>
Used to force selections to be whole panels in Day and WorkWeek.
when selecting empty cells
</summary>
<param name="sender">The source control.</param>
<param name="e">The <see cref="T:Syncfusion.Windows.Forms.Grid.GridSelectionChangingEventArgs"/> that contains the event data.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.ScheduleGrid.SetRangeInCalendar">
<summary>
Sets the date ranges.
</summary>
<returns>Date ranges.</returns>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.ScheduleGrid.SetRangeInCalendar(System.DateTime)">
<summary>
Sets the dates to be displayed in the ScheduleGrid.
</summary>
<param name="dt">The base date that determines other dates depending
upon <see cref="T:Syncfusion.Windows.Forms.Schedule.ScheduleViewType"/>.</param>
<returns>The dates to be displayed.</returns>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.ScheduleGrid.AdjustStartDate(System.DateTime@,System.Int32@)">
<summary>
Adjusts the start date.
</summary>
<param name="start">Starting date.</param>
<param name="panel">Index of the panel.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.ScheduleGrid.GetAllDayItemAtPoint(System.Drawing.Point,Syncfusion.Schedule.ItemHitType@)">
<summary>
Gets all day item for specified location.
</summary>
<param name="pt">The location of the day.</param>
<param name="hit">The item hit test type.</param>
<returns>The schedule appointment.</returns>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.ScheduleGrid.GetItemAtPoint(System.Drawing.Point,Syncfusion.Schedule.ItemHitType@)">
<summary>
Gets schedule item for specified location.
</summary>
<param name="pt">The location of the day.</param>
<param name="hit">The item hit test type.</param>
<returns>The schedule appointment.</returns>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.ScheduleGrid.GetWeekPanelFromRowCol(System.Int32,System.Int32)">
<summary>
Gets the Week panel for specified row and column index.
</summary>
<param name="row">Row index.</param>
<param name="col">Column index.</param>
<returns>Index of the week panel.</returns>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.ScheduleGrid.GetMonthPanelFromRowCol(System.Int32,System.Int32)">
<summary>
Gets the Month panel for specified row and column index.
</summary>
<param name="row">Row index.</param>
<param name="col">Column index.</param>
<returns>Index of the month panel.</returns>
</member>
<member name="F:Syncfusion.Windows.Forms.Schedule.ScheduleGrid.DisplayItemFormatStrings">
<summary>
Strings that are used to define the text that is displayed in the ScheduleControl.
</summary>
<remarks> You can control the information that is displayed within a cell within
a schedule control by setting properties like: AllDayItemFormat, WeekMonthItemFormat
and DayItemFormat. DisplayItemFormatStrings holds the token codes that you can use
to represent the format string. Here is a list of the supported tokens and what they
represent froma an IScheduleAppointment:
[end] IScheduleAppointment.EndTime (both date and time)
[label] IScheduleAppointment.LabelValue
[location] IScheduleAppointment.LocationValue
[marker] IScheduleAppointment.MarkerValue
[owner] IScheduleAppointment.Owner
[reminder] IScheduleAppointment.Reminder
[subject] IScheduleAppointment.Subject
[start] IScheduleAppointment.StartTime (both date and time)
[allday] IScheduleAppointment.AllDay (true or false)
[starttime] IScheduleAppointment.StartTime (time only)
[endtime] IScheduleAppointment.EndTime (time only)
[startdate] IScheduleAppointment.StartTime (date only)
[enddate] IScheduleAppointment.EndTime (date only)
[content] IScheduleAppointment.Content
<para></para>
To include a [ or a ] within your formatted string, use [[ and ]] to represent the single bracket.
</remarks>
<example>
Here is some sample code.
<code lang="C#">
//display only subject in weekly view
scheduleControl1.WeekMonthItemFormat = "[subject]";
//display only subject and time in weekly view
scheduleControl1.WeekMonthItemFormat = "[subject] [starttime]";
//display time Re:subject in weekly view
scheduleControl1.WeekMonthItemFormat = "[starttime] Re:[subject]";
</code>
<code lang="VB">
'display only subject in weekly view
scheduleControl1.WeekMonthItemFormat = "[subject]"
'display only subject and time in weekly view
scheduleControl1.WeekMonthItemFormat = "[subject] [starttime]"
'display time Re:subject in weekly view
scheduleControl1.WeekMonthItemFormat = "[starttime] Re:[subject]"
</code>
</example>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.ScheduleGrid.ParseDisplayItem(Syncfusion.Schedule.IScheduleAppointment,System.String)">
<summary>
Gets a string containing information on the IScheduleAppointment.
</summary>
<param name="item">The IScheduleAppointment.</param>
<param name="format">The format string containing tokens from <see cref="F:Syncfusion.Windows.Forms.Schedule.ScheduleGrid.DisplayItemFormatStrings"/>.</param>
<returns>A formatted string.</returns>
<example>
Here is a code snippet that returns a string holding the start time and
subject of someItem separated by a comma.
<code lang="C#">
<para></para>
//Get a string holding the start time and subject
string s = scheduleControl1.GetScheduleHost().ParseDisplayItem(someItem, "[starttime],[subject]");
</code>
<code lang="VB">
'Get a string holding the start time and subject
Dim s as string = ScheduleControl1.GetScheduleHost().ParseDisplayItem(someItem, "[starttime],[subject]")
</code>
</example>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.ScheduleGrid.TokenToString(Syncfusion.Schedule.IScheduleAppointment,System.String)">
<summary>
Converts the token to string.
</summary>
<param name="item">An appointment item.</param>
<param name="token">Token string to convert.</param>
<returns>The string value.</returns>
</member>
<member name="P:Syncfusion.Windows.Forms.Schedule.ScheduleGrid.DayItemFormat">
<summary>
Gets the format of the Day item.
</summary>
</member>
<member name="P:Syncfusion.Windows.Forms.Schedule.ScheduleGrid.WeekMonthItemFormat">
<summary>
Gets the format of the Week/Month item.
</summary>
</member>
<member name="P:Syncfusion.Windows.Forms.Schedule.ScheduleGrid.AllDayItemFormat">
<summary>
Gets the format of the AllDay item.
</summary>
</member>
<member name="P:Syncfusion.Windows.Forms.Schedule.ScheduleGrid.DateTimeFormat">
<summary>
Gets the format string used when formatting any of
the tokens from DisplayItemFormatStrings that represents combined
date and time values.
</summary>
</member>
<member name="P:Syncfusion.Windows.Forms.Schedule.ScheduleGrid.DateFormat">
<summary>
Gets the format string used when formatting any of
the tokens from DisplayItemFormatStrings that represents a
date only value.
</summary>
</member>
<member name="P:Syncfusion.Windows.Forms.Schedule.ScheduleGrid.TimeFormat">
<summary>
Gets the format string used when formatting any of
the tokens from DisplayItemFormatStrings that represents combined
a time only value.
</summary>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.ScheduleGrid.GetTimeDisplayText(System.Int32)">
<summary>
Gets the time string to be displayed in the time column.
</summary>
<param name="rowIndex">Grid row index, normally 2 through 50.</param>
<returns>The string to be displayed.
Characters after | will be displayed in small text.</returns>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.ScheduleGrid.RowIndexTo24Time(System.Int32)">
<summary>
Converts the row index to 24hr time format.
</summary>
<param name="rowIndex">Row index to convert.</param>
<returns>24hr time format.</returns>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.ScheduleGrid.DateTimeToRowIndex(System.DateTime)">
<summary>
Converts the Date to corresponding row index.
</summary>
<param name="dt">The date to convert.</param>
<returns>Row index.</returns>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.ScheduleGrid.ClickDateTime(System.Drawing.Point)">
<summary>
Gets the clicked date time.
</summary>
<param name="pt">The clicked position.</param>
<returns>The date value.</returns>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.ScheduleGrid.ClickDateTime(System.Int32,System.Int32)">
<summary>
Gets the date time value for specified row index and column index.
</summary>
<param name="rowIndex">Row index of the cell.</param>
<param name="colIndex">Column index of the cell.</param>
<returns>The date value.</returns>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.ScheduleGrid.Grid_CellDoubleClick(System.Object,Syncfusion.Windows.Forms.Grid.GridCellClickEventArgs)">
<summary>
Used to handle cell double click.
</summary>
<param name="sender">The source control.</param>
<param name="e">The <see cref="T:Syncfusion.Windows.Forms.Grid.GridCellClickEventArgs"/> that contains the event data.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.ScheduleGrid.GetDisplayDateUnderClick">
<summary>
Gets the display date while clicking.
</summary>
<returns>The date value.</returns>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.ScheduleGrid.GetDisplayDateUnderClick(System.Drawing.Point)">
<summary>
Gets the display date for specified position.
</summary>
<param name="point">The location.</param>
<returns>The date value.</returns>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.ScheduleGrid.ProcessClickForEditing(System.Int32,System.Int32)">
<summary>
Processes the click for editing.
</summary>
<param name="rowIndex">Row index of the cell.</param>
<param name="colIndex">Column index of the cell.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.ScheduleGrid.CreateItem(System.Int32,System.Int32)">
<summary>
Creates a schedule item
</summary>
<param name="rowIndex">Row index of the cell.</param>
<param name="timeIntervals">Time interval.</param>
<returns>Schedule item.</returns>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.ScheduleGrid.DisplayRecurringAppointmentEditConfirmation">
<summary>
Displays a dialog to determine the specific action desired by
the user when a recurring appointment is edited.
</summary>
<returns>A <see cref="T:Syncfusion.Schedule.RecurringAppointmentEditAction"/> value.</returns>
</member>
<member name="P:Syncfusion.Windows.Forms.Schedule.ScheduleGrid.MinimumGridRowHeight">
<summary>
Gets or sets the minimum row height in a Day, WorkWeek or Custom view.
</summary>
</member>
<member name="P:Syncfusion.Windows.Forms.Schedule.ScheduleGrid.SpanOnlyPrimeTime">
<summary>
Gets or sets a value indicating whether appointments that span multiple days should
only appear during prime time.
</summary>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.ScheduleGrid.SetExpectDates(Syncfusion.Schedule.IRecurringScheduleAppointment,System.Boolean)">
<summary>
Sets the expected dates when the SpanOnlyPrimeTime is changed at runtime.
</summary>
<param name="item">IRecurringScheduleAppointment item.</param>
<param name="spanOnlyPrimeTime">Span Only Prime Time.</param>
<returns>True if there was any change in the item start or end time. False otherwise.</returns>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.ScheduleGrid.CheckSpanOnlyPrimeTime">
<summary>
Changes the currently loaded span appointments start/end time
with respect to SpanOnlyPrimeTime property at runtime.
</summary>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.ScheduleGrid.OnShowingAppointmentForm(Syncfusion.Windows.Forms.Schedule.ShowingAppointFormEventArgs)">
<summary>
Raises the <see cref="E:Syncfusion.Windows.Forms.Schedule.ScheduleControl.ShowingAppointmentForm"/> event.
</summary>
<param name="e">The <see cref="T:Syncfusion.Windows.Forms.Schedule.ShowingAppointFormEventArgs"/> that contains the event data.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.ScheduleGrid.ShowAppointmentForm(Syncfusion.Schedule.IScheduleAppointment,System.Boolean,System.Int32)">
<summary>
Displays a form that allows the user to edit an appointment.
</summary>
<param name="item">The appointment to be edited.</param>
<param name="existingItem">True if the item being edited already existed.</param>
<param name="panel">An integer that provides the 0-based index of the day if
the ScheduleViewType is a Day, WorkWeek or Custom. If the view type is some other value,
panel is ignored.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.ScheduleGrid.OnClick(System.EventArgs)">
<override/>
<summary>
Overridden to set the date value in navigation calendar.
</summary>
</member>
<member name="T:Syncfusion.Windows.Forms.Schedule.ScheduleGrid.AdvancedToolTip">
<summary>
Implements the Tooltip in advanced mode for the <see cref="T:Syncfusion.Windows.Forms.Schedule.ScheduleControl"/>.
</summary>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.ScheduleGrid.AdvancedToolTip.#ctor">
<summary>
Initializes a new instance of the <see cref="T:Syncfusion.Windows.Forms.Schedule.ScheduleGrid.AdvancedToolTip"/> class.
</summary>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.ScheduleGrid.AdvancedToolTip.stringcalc(System.String,System.String@,System.String@)">
<summary>
Calculates the display of text position inside the category rectangle.
</summary>
<param name="locationText">Entire subject Text.</param>
<param name="str1">Returns the displayable first line text.</param>
<param name="str2">Returns the displayable second line text.</param>
</member>
<member name="P:Syncfusion.Windows.Forms.Schedule.ScheduleGrid.AdvancedToolTip.Item">
<summary>
Gets or sets the schedule appointment.
</summary>
</member>
<member name="P:Syncfusion.Windows.Forms.Schedule.ScheduleGrid.AdvancedToolTip.CategoryColor">
<summary>
Gets or sets the category color.
</summary>
</member>
<member name="P:Syncfusion.Windows.Forms.Schedule.ScheduleGrid.AdvancedToolTip.ShowTimeColor">
<summary>
Gets or Sets the ShowTimeColor.
</summary>
</member>
<member name="P:Syncfusion.Windows.Forms.Schedule.ScheduleGrid.AdvancedToolTip.TipBounds">
<summary>
Gets or sets the location of the Tooltip.
</summary>
</member>
<member name="P:Syncfusion.Windows.Forms.Schedule.ScheduleGrid.AdvancedToolTip.BorderColor">
<summary>
Gets or sets the border color.
</summary>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.ScheduleGrid.AdvancedToolTip.OnPopup(System.Object,System.Windows.Forms.PopupEventArgs)">
<summary>
Customizes the AdvancedToolTip size.
</summary>
<param name="sender">Event source.</param>
<param name="e">The <see cref="T:System.Windows.Forms.PopupEventArgs"/> that contains the event data.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.ScheduleGrid.AdvancedToolTip.OnDraw(System.Object,System.Windows.Forms.DrawToolTipEventArgs)">
<summary>
OnDraw to handle the drawing of metro tooltip.
</summary>
<param name="sender">Event source.</param>
<param name="e">The <see cref="T:System.Windows.Forms.DrawToolTipEventArgs"/> that contains the event data.</param>
</member>
<member name="P:Syncfusion.Windows.Forms.Schedule.ScheduleGrid.AdvancedToolTip.ArrowHead">
<summary>
Gets or sets the arrow Head direction while showing the ToolTip.
</summary>
</member>
<member name="T:Syncfusion.Windows.Forms.Schedule.ScheduleGrid.AdvancedToolTip.ArrowHeadDirection">
<summary>
Defines the constants that specify the ArrowHeadDirection of the ToolTip.
</summary>
</member>
<member name="F:Syncfusion.Windows.Forms.Schedule.ScheduleGrid.AdvancedToolTip.ArrowHeadDirection.Left">
<summary>
Specifies the arrow head direction as left
</summary>
</member>
<member name="F:Syncfusion.Windows.Forms.Schedule.ScheduleGrid.AdvancedToolTip.ArrowHeadDirection.Right">
<summary>
Specifies the arrow head direction as Right
</summary>
</member>
<member name="F:Syncfusion.Windows.Forms.Schedule.ScheduleGrid.AdvancedToolTip.ArrowHeadDirection.Top">
<summary>
Specifies the arrow head direction as Top
</summary>
</member>
<member name="F:Syncfusion.Windows.Forms.Schedule.ScheduleGrid.AdvancedToolTip.ArrowHeadDirection.Bottom">
<summary>
Specifies the arrow head direction as Bottom
</summary>
</member>
<member name="T:Syncfusion.Windows.Forms.Schedule.ScheduleGrid.ShowingAdvancedTooltipEventArgs">
<summary>
Provides data for the <see cref="E:Syncfusion.Windows.Forms.Schedule.ScheduleGrid.ShowingAdvancedToolTip"/> event.
</summary>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.ScheduleGrid.ShowingAdvancedTooltipEventArgs.#ctor(Syncfusion.Schedule.IScheduleAppointment,System.String,System.Drawing.Color,System.Drawing.Color,System.Drawing.Color)">
<summary>
Initializes a new instance of the <see cref="T:Syncfusion.Windows.Forms.Schedule.ScheduleGrid.ShowingAdvancedTooltipEventArgs"/> class.
</summary>
<param name="subject">Display Text of subject Rectangle.</param>
<param name="categoryColor">Backcolor of Subject Rectangle.</param>
<param name="ShowTimeColor">Backcolor of Category Rectangle.</param>
<param name="border">>BorderColor of ToolTip Rectangle.</param>
</member>
<member name="P:Syncfusion.Windows.Forms.Schedule.ScheduleGrid.ShowingAdvancedTooltipEventArgs.Subject">
<summary>
Gets or sets the DisplayText of the Subject of ToolTip.
</summary>
</member>
<member name="P:Syncfusion.Windows.Forms.Schedule.ScheduleGrid.ShowingAdvancedTooltipEventArgs.CategoryBackColor">
<summary>
Gets or sets the category backcolor.
</summary>
</member>
<member name="P:Syncfusion.Windows.Forms.Schedule.ScheduleGrid.ShowingAdvancedTooltipEventArgs.ShowTimeColor">
<summary>
Gets or sets the ShowTime Rectangle backcolor.
</summary>
</member>
<member name="P:Syncfusion.Windows.Forms.Schedule.ScheduleGrid.ShowingAdvancedTooltipEventArgs.BorderColor">
<summary>
Gets or sets the BorderColor of ToolTip border color.
</summary>
</member>
<member name="P:Syncfusion.Windows.Forms.Schedule.ScheduleGrid.ShowingAdvancedTooltipEventArgs.Appointment">
<summary>
Gets the appointment of the item.
</summary>
</member>
<member name="T:Syncfusion.Windows.Forms.Schedule.ScheduleGrid.ShowingAdvancedToolTipEventHandler">
<summary>
Represents the method that will handle the <see cref="E:Syncfusion.Windows.Forms.Schedule.ScheduleGrid.ShowingAdvancedToolTip"/> event.
</summary>
<param name="sender">Represents the root of type hierarchy.</param>
<param name="e">The <see cref="T:Syncfusion.Windows.Forms.Schedule.ScheduleGrid.ShowingAdvancedTooltipEventArgs"/> that contains the event data.</param>
</member>
<member name="E:Syncfusion.Windows.Forms.Schedule.ScheduleGrid.ShowingAdvancedToolTip">
<summary>
Occurs when advanced tool tip is shown.
</summary>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.ScheduleGrid.OnShowingAdvancedToolTip(Syncfusion.Windows.Forms.Schedule.ScheduleGrid.ShowingAdvancedTooltipEventArgs)">
<summary>
Raises the <see cref="E:Syncfusion.Windows.Forms.Schedule.ScheduleGrid.ShowingAdvancedToolTip"/> event.
</summary>
<param name="e">The <see cref="T:Syncfusion.Windows.Forms.Schedule.ScheduleGrid.ShowingAdvancedTooltipEventArgs"/> that contains the event data.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.ScheduleGrid.AdvancedToolTipFiring(Syncfusion.Schedule.IScheduleAppointment,Syncfusion.Windows.Forms.Schedule.ScheduleGrid.AdvancedToolTip)">
<summary>
This method is responsible for raising the ShowingAdvancedToolTipEvent.
</summary>
<param name="item">Scheduled appointment item which was hovered.</param>
<param name="tip">Object of the AdvacedToolTip</param>
<returns>Returns the subject display of the item.</returns>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.ScheduleGrid.OnMouseLeave(System.EventArgs)">
<summary>
Overridden to disable the the display of ToolTip
as the user leaves mouse pointer out of an IScheduleAppointment.
</summary>
<param name="e">The event arguments.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.ScheduleGrid.OnMouseMove(System.Windows.Forms.MouseEventArgs)">
<summary>
Overridden to manage tooltip that displays IScheduleAppointment information
as the user hovers the mouse over an item.
</summary>
<param name="e">The event arguments.</param>
</member>
<member name="E:Syncfusion.Windows.Forms.Schedule.ScheduleGrid.ScheduleAppointmentClick">
<summary>
Occurs when you click/double click an item.
</summary>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.ScheduleGrid.OnScheduleAppointmentClick(Syncfusion.Windows.Forms.Schedule.ScheduleAppointmentClickEventArgs)">
<summary>
Raises the <see cref="E:Syncfusion.Windows.Forms.Schedule.ScheduleGrid.ScheduleAppointmentClick"/> event.
</summary>
<param name="e">The <see cref="E:Syncfusion.Windows.Forms.Schedule.ScheduleGrid.ScheduleAppointmentClick"/> that contains the event data.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.ScheduleGrid.OnCellCursor(Syncfusion.Windows.Forms.Grid.GridCellCursorEventArgs)">
<summary>
Overridden to show drop cursor while moving an appointment in a Month or Week
display.
</summary>
<param name="e">The <see cref="T:Syncfusion.Windows.Forms.Grid.GridCellCursorEventArgs"/> that contains the event data.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.ScheduleGrid.SetTemporaryDragItem">
<summary>
Sets the temporary drag item.
</summary>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.ScheduleGrid.SwitchTo(Syncfusion.Windows.Forms.Schedule.ScheduleViewType,System.Boolean)">
<summary>
A method that switches the display to the requested ScheduleViewType.
</summary>
<param name="t">The ScheduleViewType.</param>
<param name="force">Whether or not the display should be reset if the current ScheduleViewType is the same as the requested ScheduleViewType.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.ScheduleGrid.DeleteAppointment">
<summary>
A method to delete an existing appointment.
</summary>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.ScheduleGrid.Grid_MouseDown(System.Object,System.Windows.Forms.MouseEventArgs)">
<summary>
Used to add schedule items.
</summary>
<param name="sender">The source control.</param>
<param name="e">The <see cref="T:System.Windows.Forms.MouseEventArgs"/> that contains the event data.</param>
</member>
<member name="P:Syncfusion.Windows.Forms.Schedule.ScheduleGrid.ItemSelected">
<summary>
Gets a value indicating whether item is selected.
</summary>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.ScheduleGrid.DaysInMonth(System.DateTime)">
<summary>
Gets the days in specified month.s
</summary>
<param name="dt">The date value.</param>
<returns>The number of days.</returns>
</member>
<member name="F:Syncfusion.Windows.Forms.Schedule.ScheduleGrid.MaxLimitOnDisplayDays">
<summary>
Maximum number of days displayable as a ScheduleViewType.CustomWeek display.
</summary>
<remarks>If you select more days than this limit, the latter selections
will be ignored.
</remarks>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.ScheduleGrid.GetCustomDayCount">
<summary>
Gets the selected dates count.
</summary>
<returns>The selected dates count.</returns>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.ScheduleGrid.GetCustomStartDate">
<summary>
Gets the start date.
</summary>
<returns>The start date.</returns>
</member>
<member name="P:Syncfusion.Windows.Forms.Schedule.ScheduleGrid.CharLength">
<summary>
Used internally. Gets or sets the number of bytes used for a single character.
</summary>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.ScheduleGrid.SetUpDayOfWeekStrings">
<summary>
Sets the days of week.
</summary>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.ScheduleGrid.SetHeaderLabel">
<summary>
Initializes the labels from <see cref="F:Syncfusion.Windows.Forms.Schedule.ScheduleGrid.DisplayStrings"/>that appear in headers of the ScheduleGrid.
</summary>
<remarks>
Call this method after you make any modifications to <see cref="F:Syncfusion.Windows.Forms.Schedule.ScheduleGrid.DisplayStrings"/> to make the
ScheduleGrid use the modified DisplayStrings.
</remarks>
</member>
<member name="F:Syncfusion.Windows.Forms.Schedule.ScheduleGrid.DisplayStrings">
<summary>
Holds various strings used in the ScheduleGrid control.
</summary>
<remarks>
You can change the strings used on the ScheduleGrid by changing the values
in this string array.
</remarks>
<example>
Here are the default values of this string array.
<code lang="C#">
public static string[] DisplayStrings = new string[]
{
"no closing delimiter error", // 0
"(none)", // 1
"Week starting ", // 2
"Starting ", // 3
" Double Click to Add All Day Event", // 4
"To ", //5
"From ", //6
"Remove this appointment?", //7
"Remove Appointment", //8
"&amp;New Item", //9
"New &amp;All Day item", //10
"&amp;Edit Item", //11
"De&amp;lete Item", //12
"&amp;Day", //13
"&amp;Work Week", //14
"Wee&amp;k", //15
"&amp;Month" //16
"Click to switch to Day view" //17
};
</code>
</example>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.ScheduleGrid.SelectedDates_SelectionsChanged(System.Object,System.EventArgs)">
<summary>
Used to change the selected dates.
</summary>
<param name="sender">The source control.</param>
<param name="e">The <see cref="T:System.EventArgs"/> that contains the event data.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.ScheduleGrid.AdjustSelections">
<summary>
Adjusts the selections.
</summary>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.ScheduleGrid.SetCurrentCellInView(System.DateTime)">
<summary>
Sets the current cell location while switching the view.
</summary>
<param name="date">Current selected date.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.ScheduleGrid.previousButton_Click(System.Object,System.EventArgs)">
<summary>
Used to move the previous view.
</summary>
<param name="sender">The source control.</param>
<param name="e">The <see cref="T:System.EventArgs"/> that contains the event data.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.ScheduleGrid.nextButton_Click(System.Object,System.EventArgs)">
<summary>
Used to move the next view.
</summary>
<param name="sender">The source control.</param>
<param name="e">The <see cref="T:System.EventArgs"/> that contains the event data.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.ScheduleGrid.MoveInDir(System.Boolean)">
<summary>
Moves the direction.
</summary>
<param name="forward">Indicates whether move forward.</param>
</member>
<member name="T:Syncfusion.Windows.Forms.Schedule.DragHitContext">
<summary>
Defines the constants that specify where the mouse is during a appointment drag in a Week or Month view.
</summary>
</member>
<member name="F:Syncfusion.Windows.Forms.Schedule.DragHitContext.No">
<summary>
No mouse hit.
</summary>
</member>
<member name="F:Syncfusion.Windows.Forms.Schedule.DragHitContext.Schedule">
<summary>
Mouse is over the ScheduleControl.
</summary>
</member>
<member name="F:Syncfusion.Windows.Forms.Schedule.DragHitContext.Calendar">
<summary>
Mouse is over the calendar.
</summary>
</member>
<member name="T:Syncfusion.Windows.Forms.Schedule.ParseDisplayItemEventHandler">
<summary>
Represents the method that will handle the <see cref="E:Syncfusion.Windows.Forms.Schedule.ScheduleControl.ParseDisplayItem"/> event.
</summary>
<param name="sender">The source control.</param>
<param name="e">The <see cref="T:Syncfusion.Windows.Forms.Schedule.ParseDisplayItemEventArgs"/> that contains the event data.</param>
</member>
<member name="T:Syncfusion.Windows.Forms.Schedule.ParseDisplayItemEventArgs">
<summary>
Provides data about the <see cref="E:Syncfusion.Windows.Forms.Schedule.ScheduleControl.ParseDisplayItem"/> event.
</summary>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.ParseDisplayItemEventArgs.#ctor">
<summary>
Initializes a new instance of the <see cref="T:Syncfusion.Windows.Forms.Schedule.ParseDisplayItemEventArgs"/> class.
</summary>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.ParseDisplayItemEventArgs.#ctor(Syncfusion.Schedule.IScheduleAppointment,System.String)">
<summary>
Initialize a new object with ScheduleAppointment item and the display format string.
</summary>
<param name="item">ScheduleAppointment item.</param>
<param name="format">Format string.</param>
</member>
<member name="P:Syncfusion.Windows.Forms.Schedule.ParseDisplayItemEventArgs.Format">
<summary>
Gets or sets the format string to be applied to the display message.
</summary>
</member>
<member name="P:Syncfusion.Windows.Forms.Schedule.ParseDisplayItemEventArgs.FormattedText">
<summary>
Gets or sets the formatted display text for the ScheduleAppointment item.
</summary>
</member>
<member name="P:Syncfusion.Windows.Forms.Schedule.ParseDisplayItemEventArgs.Item">
<summary>
Gets the ScheduleAppointment item.
</summary>
</member>
<member name="T:Syncfusion.Windows.Forms.Schedule.TranparentLabel">
<summary>
Creates a transparent label that is used to display the schedule appointments.
</summary>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.TranparentLabel.#ctor(Syncfusion.Schedule.IRecurringScheduleAppointment)">
<summary>
Initializes a new instance of the <see cref="T:Syncfusion.Windows.Forms.Schedule.TranparentLabel"/> class.
</summary>
<param name="item">Recurring appointment item.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.TranparentLabel.#ctor(Syncfusion.Windows.Forms.Schedule.ScheduleGrid,Syncfusion.Schedule.IRecurringScheduleAppointment)">
<summary>
Initializes a new instance of the <see cref="T:Syncfusion.Windows.Forms.Schedule.TranparentLabel"/> class.
</summary>
<param name="parent">Schedule grid.</param>
<param name="item">Recurring appointment.</param>
</member>
<member name="P:Syncfusion.Windows.Forms.Schedule.TranparentLabel.ScreenSlot">
<summary>
Gets or sets the screen slot.
</summary>
</member>
<member name="P:Syncfusion.Windows.Forms.Schedule.TranparentLabel.Item">
<summary>
Gets or sets the Recurring Appointment item.
</summary>
</member>
<member name="P:Syncfusion.Windows.Forms.Schedule.TranparentLabel.ScheduleGrid">
<summary>
Gets the Schedule Grid.
</summary>
</member>
<member name="P:Syncfusion.Windows.Forms.Schedule.TranparentLabel.RightText">
<summary>
Gets or sets the text displayed on open right-side of the label.
</summary>
</member>
<member name="P:Syncfusion.Windows.Forms.Schedule.TranparentLabel.LeftText">
<summary>
Gets or sets the text displayed on open left-side of the label.
</summary>
</member>
<member name="P:Syncfusion.Windows.Forms.Schedule.TranparentLabel.RightIText">
<summary>
Gets or sets the text displayed on interior right-side of the label.
</summary>
</member>
<member name="P:Syncfusion.Windows.Forms.Schedule.TranparentLabel.LeftIText">
<summary>
Gets or sets the text displayed on interior left-side of the label.
</summary>
</member>
<member name="P:Syncfusion.Windows.Forms.Schedule.TranparentLabel.BoxColor">
<summary>
Gets or sets the color used to draw the label background.
</summary>
</member>
<member name="P:Syncfusion.Windows.Forms.Schedule.TranparentLabel.MarkerColor">
<summary>
Gets or sets the color used to draw the label background.
</summary>
</member>
<member name="P:Syncfusion.Windows.Forms.Schedule.TranparentLabel.DrawRounded">
<summary>
Gets a value indicating whether the label should have rounded corners.
</summary>
</member>
<member name="P:Syncfusion.Windows.Forms.Schedule.TranparentLabel.Schedule">
<summary>
Gets or sets the ScheduleControl.
</summary>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.TranparentLabel.GetGridBackColor(System.Int32,System.Int32)">
<summary>
Gets the backcolor of the schedule grid.
</summary>
<param name="row">Row index of a cell.</param>
<param name="col">Column index of a cell.</param>
<returns>Backcolor of grid.</returns>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.TranparentLabel.OnPaint(System.Windows.Forms.PaintEventArgs)">
<override/>
<summary>
Overridden to draw the rectangles and customization.
</summary>
<param name="e">The <see cref="T:System.Windows.Forms.PaintEventArgs"/> that contains the event data.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.TranparentLabel.CheckIfRoom(System.Int32@,System.Int32@,System.Int32@,System.Int32@,System.Int32@,System.Drawing.Point,System.Int32)">
<summary>
Determines the left and right positions of the bitmap and text.
</summary>
<param name="doLeftBm">Left of the bitmap value.</param>
<param name="doLeftText">Left of the text.</param>
<param name="doText">Text value.</param>
<param name="doRightText">Right of the text.</param>
<param name="doRightBm">Right of the bitmap.</param>
<param name="pt">The position.</param>
<param name="width1">Width of the text and bitmap.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.TranparentLabel.OnPaintBackground(System.Windows.Forms.PaintEventArgs)">
<override/>
<summary>
Overridden to draw the rectangle.
</summary>
<param name="pevent">The <see cref="T:System.Windows.Forms.PaintEventArgs"/> that contains the event data.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.TranparentLabel.CreateArrowBitmap(System.Boolean,System.String)">
<summary>
Creates the arrow marker.
</summary>
<param name="left">Indicates whether bitmap has to be drawn on left.</param>
<param name="label">Text to be drawn.</param>
<returns>The bitmap image to draw.</returns>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.TranparentLabel.OnMouseMove(System.Windows.Forms.MouseEventArgs)">
<override/>
<summary>Overridden to show the advanced tooltip.</summary>
<param name="e">The <see cref="T:System.Windows.Forms.MouseEventArgs"/> that contains the event data.</param>
</member>
<member name="T:Syncfusion.Windows.Forms.Schedule.SpanLayoutManager">
<summary>Implements the functionality of span layout for ScheduleControl.Only for internal use.</summary>
<internalonly/>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.SpanLayoutManager.#ctor(Syncfusion.Windows.Forms.Schedule.ScheduleControl)">
<summary>Spans the layout.Only for internal use.</summary>
<param name="schedule">Schedule control.</param>
<internalonly/>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.SpanLayoutManager.Clear">
<summary>Clears the layout. Only for internal use.</summary>
<internalonly/>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.SpanLayoutManager.MarkSlotRange(System.DateTime,System.DateTime,System.Int32)">
<summary>Gets the mark slot range.</summary>
<param name="start">The start date value.</param>
<param name="end">The end date value.</param>
<param name="pos">The position.</param>
<internalonly/>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.SpanLayoutManager.MarkSlot(System.DateTime,System.Int32)">
<summary>Gets the mark slot.</summary>
<param name="dt">The date value.</param>
<param name="pos">The position.</param>
<internalonly/>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.SpanLayoutManager.GetFreeSlot(System.DateTime)">
<summary>Gets the free slot.</summary>
<internalonly/>
<returns>Position of free slot.</returns>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.SpanLayoutManager.BottomSlot(System.DateTime)">
<summary>
Gets the bottom slot for specified date.
</summary>
<param name="dt">The date value.</param>
<returns>The bottom value.</returns>
</member>
<member name="T:Syncfusion.Windows.Forms.Schedule.ScheduleAppointmentClickEventHandler">
<summary>
Represents the method that will handle the <see cref="E:Syncfusion.Windows.Forms.Schedule.ScheduleControl.ScheduleAppointmentClick"/> event.
</summary>
<param name="sender">The source control.</param>
<param name="e">The <see cref="T:Syncfusion.Windows.Forms.Schedule.AdjustingAppointmentMouseWithEventArgs"/> that contains the event data.</param>
</member>
<member name="T:Syncfusion.Windows.Forms.Schedule.ScheduleAppointmentClickEventArgs">
<summary>
Provides data for the <see cref="E:Syncfusion.Windows.Forms.Schedule.ScheduleControl.ScheduleAppointmentClick"/> event.
<remarks>
A ScheduleAppointmentClickEventArgs class holds references
to the IScheduleAppointment that was clicked as as other information such as whether it was a single
click or double click.Used by the <see cref="E:Syncfusion.Windows.Forms.Schedule.ScheduleControl.ScheduleAppointmentClick"/> event.
</remarks>
</summary>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.ScheduleAppointmentClickEventArgs.#ctor">
<summary>
Initializes a new instance of the <see cref="T:Syncfusion.Windows.Forms.Schedule.ScheduleAppointmentClickEventArgs"/> class.
</summary>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.ScheduleAppointmentClickEventArgs.#ctor(Syncfusion.Windows.Forms.Schedule.ScheduleAppointmentClickType,Syncfusion.Schedule.IScheduleAppointment,Syncfusion.Windows.Forms.Schedule.ScheduleViewType,System.DateTime)">
<summary>
Initializes a new instance of the <see cref="T:Syncfusion.Windows.Forms.Schedule.ScheduleAppointmentClickEventArgs"/> class.
</summary>
<param name="clickType">The ScheduleAppointmentClickType that describes the click.</param>
<param name="item">The IScheduleAppointment that was clicked. May be null.</param>
<param name="type">The active ScheduleViewType.</param>
<param name="clickDateTime">The calendar time slot of the click.</param>
</member>
<member name="P:Syncfusion.Windows.Forms.Schedule.ScheduleAppointmentClickEventArgs.Type">
<summary>
Gets or sets the Calendar Type.
</summary>
</member>
<member name="P:Syncfusion.Windows.Forms.Schedule.ScheduleAppointmentClickEventArgs.ClickType">
<summary>
Gets or sets the type of item click.
</summary>
</member>
<member name="P:Syncfusion.Windows.Forms.Schedule.ScheduleAppointmentClickEventArgs.Item">
<summary>
Gets or sets the Schedule item under the click point.
</summary>
</member>
<member name="P:Syncfusion.Windows.Forms.Schedule.ScheduleAppointmentClickEventArgs.ClickDateTime">
<summary>
Gets or sets the time slot that was clicked.
</summary>
</member>
<member name="T:Syncfusion.Windows.Forms.Schedule.AdjustingAppointmentWithMouseEventHandler">
<summary>
Represents the method that will handle the <see cref="E:Syncfusion.Windows.Forms.Schedule.ScheduleControl.AdjustingAppointmentWithMouse"/> event.
</summary>
<param name="sender">The source control.</param>
<param name="e">The <see cref="T:Syncfusion.Windows.Forms.Schedule.AdjustingAppointmentMouseWithEventArgs"/> that contains the event data.</param>
</member>
<member name="T:Syncfusion.Windows.Forms.Schedule.AdjustingAppointmentMouseWithEventArgs">
<summary>
Provides data for the <see cref="E:Syncfusion.Windows.Forms.Schedule.ScheduleControl.AdjustingAppointmentWithMouse"/> event.
</summary>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.AdjustingAppointmentMouseWithEventArgs.#ctor(Syncfusion.Schedule.IScheduleAppointment)">
<summary>
Initializes a new instance of the <see cref="T:Syncfusion.Windows.Forms.Schedule.AdjustingAppointmentMouseWithEventArgs"/> class.
</summary>
<param name="item">The appointment item to be adjusted.</param>
</member>
<member name="P:Syncfusion.Windows.Forms.Schedule.AdjustingAppointmentMouseWithEventArgs.Item">
<summary>
Gets the Schedule appointment item to be adjusted.
</summary>
</member>
<member name="T:Syncfusion.Windows.Forms.Schedule.ScheduleGridCreatedEventHandler">
<summary>
Represents the method that will handle the <see cref="E:Syncfusion.Windows.Forms.Schedule.ScheduleControl.ScheduleGridCreated"/> event.
</summary>
<param name="sender">The source control.</param>
<param name="e">The <see cref="T:Syncfusion.Windows.Forms.Schedule.ScheduleGridCreatedEventArgs"/> that contains the event data.</param>
</member>
<member name="T:Syncfusion.Windows.Forms.Schedule.ScheduleGridCreatedEventArgs">
<summary>
Provides data for the <see cref="E:Syncfusion.Windows.Forms.Schedule.ScheduleControl.ScheduleGridCreated"/> event.
</summary>
<remarks>
An event that lets you replace the default ScheduleGrid with a derived grid, or subscribe to events
on the ScheduleGrid.
If you need to use a derived ScheduleGrid for any reason, set <see cref="P:Syncfusion.Windows.Forms.Schedule.ScheduleGridCreatedEventArgs.Grid"/>
to be an instance of your derived ScheduleGrid and set <see cref="P:Syncfusion.Windows.Forms.Schedule.ScheduleGridCreatedEventArgs.Handled"/> = true.
If you want to subscribe to events on a ScheduleGrid, create an instance of ScheduleGrid,
subscribe to the events, set <see cref="P:Syncfusion.Windows.Forms.Schedule.ScheduleGridCreatedEventArgs.Grid"/> to the instance, and set <see cref="P:Syncfusion.Windows.Forms.Schedule.ScheduleGridCreatedEventArgs.Handled"/> = true.
<example>
Here is a sample event handler that subscribes to the CurrentCellKeyDown on the ScheduleGrid.
<code lang="C#">
void scheduleControl1_ScheduleGridCreated(object sender, ScheduleGridCreatedEventArgs e)
{
//subscribe to an event
ScheduleGrid grid = new ScheduleGrid(e.Calendar, e.Schedule, e.InitialDate);
grid.CurrentCellKeyDown += new KeyEventHandler(grid_CurrentCellKeyDown);
e.Grid = grid;
e.Handled = true;
}
</code>
Here is a sample event handler that creates an instance of a derived ScheduleGrid.
<code lang="C#">
void scheduleControl1_ScheduleGridCreated(object sender, ScheduleGridCreatedEventArgs e)
{
//create a derived ScheduleGrid
e.Grid = new MyScheduleGrid(e.Calendar, e.Schedule, e.InitialDate);
e.Handled = true;
}
</code>
</example>
</remarks>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.ScheduleGridCreatedEventArgs.#ctor(Syncfusion.Windows.Forms.Schedule.NavigationCalendar,Syncfusion.Windows.Forms.Schedule.ScheduleControl,System.DateTime)">
<summary>
Initializes a new instance of the <see cref="T:Syncfusion.Windows.Forms.Schedule.ScheduleGridCreatedEventArgs"/> class.
</summary>
<param name="calendar">The navigation calendar used to create the ScheduleGrid.</param>
<param name="schedule">The ScheduleControl that is the parent of the ScheduleGrid being created.</param>
<param name="initialDate">The date used to create the ScheduleGrid.</param>
</member>
<member name="P:Syncfusion.Windows.Forms.Schedule.ScheduleGridCreatedEventArgs.InitialDate">
<summary>
Gets the date used to create the ScheduleGrid.
</summary>
</member>
<member name="P:Syncfusion.Windows.Forms.Schedule.ScheduleGridCreatedEventArgs.Grid">
<summary>
Gets or sets the ScheduleGrid being used by the ScheduleControl.
</summary>
<remarks>
Make sure you set <see cref="P:Syncfusion.Windows.Forms.Schedule.ScheduleGridCreatedEventArgs.Handled"/> = true if you supply a
ScheduleGrid object by setting this member.
</remarks>
</member>
<member name="P:Syncfusion.Windows.Forms.Schedule.ScheduleGridCreatedEventArgs.Calendar">
<summary>
Gets the navigation calendar used by the ScheduleGrid being created.
</summary>
</member>
<member name="P:Syncfusion.Windows.Forms.Schedule.ScheduleGridCreatedEventArgs.Schedule">
<summary>
Gets the ScheduleControl being used by the ScheduleGrid being created.
</summary>
</member>
<member name="P:Syncfusion.Windows.Forms.Schedule.ScheduleGridCreatedEventArgs.Handled">
<summary>
Gets or sets a value indicating whether a ScheduleGrid is being returned in <see cref="T:Syncfusion.Windows.Forms.Grid.GridControl"/>.
</summary>
<remarks>
Use this variable to indicate that your event handler has created a ScheduleGrid object and
assigned it to <see cref="P:Syncfusion.Windows.Forms.Schedule.ScheduleGridCreatedEventArgs.Grid"/> so it can be
used in your ScheduleControl. This allows you to use derived ScheduleGrid objects,
and also create a schedule grid object and subscribe to events on it.
</remarks>
</member>
<member name="T:Syncfusion.Windows.Forms.Schedule.ScheduleAppointmentClickType">
<summary>
Defines the constants that specify the possible types of clicks on a calendar.
</summary>
</member>
<member name="F:Syncfusion.Windows.Forms.Schedule.ScheduleAppointmentClickType.RightClick">
<summary>
A right click.
</summary>
</member>
<member name="F:Syncfusion.Windows.Forms.Schedule.ScheduleAppointmentClickType.LeftClick">
<summary>
A left click.
</summary>
</member>
<member name="F:Syncfusion.Windows.Forms.Schedule.ScheduleAppointmentClickType.RightDblClick">
<summary>
A right double click.
</summary>
</member>
<member name="F:Syncfusion.Windows.Forms.Schedule.ScheduleAppointmentClickType.LeftDblClick">
<summary>
A left double click.
</summary>
</member>
<member name="T:Syncfusion.Windows.Forms.Schedule.ScheduleContextMenuClickEventHandler">
<summary>
Represents the method that will handle the <see cref="E:Syncfusion.Windows.Forms.Schedule.ScheduleControl.ScheduleContextMenuClick"/> event.
</summary>
<param name="sender">The source control.</param>
<param name="e">The <see cref="T:Syncfusion.Windows.Forms.Schedule.ScheduleContextMenuClickEventArgs"/> that contains the event data.</param>
</member>
<member name="T:Syncfusion.Windows.Forms.Schedule.ScheduleContextMenuClickEventArgs">
<summary>
Provides data for the <see cref="E:Syncfusion.Windows.Forms.Schedule.ScheduleControl.ScheduleContextMenuClick"/> event.
</summary>
<remarks>
A ScheduleContextMenuClickArgs class holds references
to the menu item that was clicked as as other information such as whether it was a single
click.Used by the event.
</remarks>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.ScheduleContextMenuClickEventArgs.#ctor">
<summary>
Initializes a new instance of the <see cref="T:Syncfusion.Windows.Forms.Schedule.ScheduleContextMenuClickEventArgs"/> class.
</summary>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.ScheduleContextMenuClickEventArgs.#ctor(System.Windows.Forms.MenuItem)">
<summary>
Initializes a new instance of the <see cref="T:Syncfusion.Windows.Forms.Schedule.ScheduleContextMenuClickEventArgs"/> class.
</summary>
<param name="item">The <see cref="T:System.Windows.Forms.MenuItem"/>.</param>
</member>
<member name="P:Syncfusion.Windows.Forms.Schedule.ScheduleContextMenuClickEventArgs.Item">
<summary>
Gets or sets the menu item under the click point.
</summary>
</member>
<member name="T:Syncfusion.Windows.Forms.Schedule.ResizingCellsMode">
<summary>
Defines the constants that specify the modes of the row and column resizing behavior.
</summary>
</member>
<member name="F:Syncfusion.Windows.Forms.Schedule.ResizingCellsMode.None">
<summary>
No resizing.
</summary>
</member>
<member name="F:Syncfusion.Windows.Forms.Schedule.ResizingCellsMode.ResizeRow">
<summary>
Resize row.
</summary>
</member>
<member name="F:Syncfusion.Windows.Forms.Schedule.ResizingCellsMode.ResizeColumn">
<summary>
Resize column.
</summary>
</member>
<member name="T:Syncfusion.Windows.Forms.Schedule.ScheduleResizeCellsMouseController">
<summary>
Implements the mouse interactions handlers for <see cref="T:Syncfusion.Windows.Forms.Schedule.ScheduleControl"/> .
</summary>
</member>
<member name="P:Syncfusion.Windows.Forms.Schedule.ScheduleResizeCellsMouseController.navCellWindow">
<summary>
Gets the navigation cell window.
</summary>
</member>
<member name="P:Syncfusion.Windows.Forms.Schedule.ScheduleResizeCellsMouseController.headerWindow">
<summary>
Gets the header window.
</summary>
</member>
<member name="P:Syncfusion.Windows.Forms.Schedule.ScheduleResizeCellsMouseController.dragWindow">
<summary>
Gets the drag window.
</summary>
</member>
<member name="P:Syncfusion.Windows.Forms.Schedule.ScheduleResizeCellsMouseController.oldBoundsWindow">
<summary>
Gets the old bounds of the window.
</summary>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.ScheduleResizeCellsMouseController.GetAllowFixFocus">
<override/>
<summary>
Gets a value indicating whether control has the focus.
</summary>
<returns>True if the control should be focused.</returns>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.ScheduleResizeCellsMouseController.#ctor(Syncfusion.Windows.Forms.Grid.GridControlBase)">
<summary>
Initializes a new instance of the <see cref="T:Syncfusion.Windows.Forms.Schedule.ScheduleResizeCellsMouseController"/> class and attaches it to a grid.
</summary>
<param name="grid">The grid control.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.ScheduleResizeCellsMouseController.HasResizeColOptions(Syncfusion.Windows.Forms.Grid.GridResizeCellsBehavior)">
<summary>
Determines whether resizing cells behavior has column option.
</summary>
<param name="flags">The <see cref="T:Syncfusion.Windows.Forms.Grid.GridResizeCellsBehavior"/> </param>
<returns>True if resizing behavior is column otherwise false.</returns>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.ScheduleResizeCellsMouseController.HasResizeRowOptions(Syncfusion.Windows.Forms.Grid.GridResizeCellsBehavior)">
<summary>
Determines whether resizing cells behavior has row option.
</summary>
<param name="flags">The <see cref="T:Syncfusion.Windows.Forms.Grid.GridResizeCellsBehavior"/>.</param>
<returns>True if resizing behavior is row otherwise false.</returns>
</member>
<member name="P:Syncfusion.Windows.Forms.Schedule.ScheduleResizeCellsMouseController.CanResizeRows">
<summary>
Gets a value indicating whether rows can be resized.
</summary>
</member>
<member name="P:Syncfusion.Windows.Forms.Schedule.ScheduleResizeCellsMouseController.CanResizeCols">
<summary>
Gets a value indicating whether columns can be resized.
</summary>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.ScheduleResizeCellsMouseController.LeftMouseDown(System.Drawing.Point,System.Windows.Forms.MouseEventArgs,System.Int32,System.Int32,System.Int32)">
<summary>
Performs the left mouse down action.
</summary>
<param name="point">The clicking location.</param>
<param name="e">The <see cref="T:System.Windows.Forms.MouseEventArgs"/> that contains the event data.</param>
<param name="ht">The hit test value.</param>
<param name="rowIndex">Row index of the cell.</param>
<param name="colIndex">Column index of the cell.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.ScheduleResizeCellsMouseController.LeftMouseMove(System.Drawing.Point,System.Windows.Forms.MouseEventArgs)">
<summary>
Performs the left mouse move action.
</summary>
<param name="point">The mouse moving position.</param>
<param name="e">The <see cref="T:System.Windows.Forms.MouseEventArgs"/> that contains the event data.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.ScheduleResizeCellsMouseController.LeftMouseUp(System.Drawing.Point,System.Windows.Forms.MouseEventArgs)">
<summary>
Performs the left mouse up action.
</summary>
<param name="point">The mouse up position.</param>
<param name="e">The <see cref="T:System.Windows.Forms.MouseEventArgs"/> that contains the event data.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.ScheduleResizeCellsMouseController.LeftMouseDoubleClick(System.Drawing.Point,System.EventArgs,System.Int32,System.Int32,System.Int32)">
<summary>
Performs the left mouse double click action.
</summary>
<param name="point">The clicking location.</param>
<param name="e">The <see cref="T:System.EventArgs"/> that contains the event data.</param>
<param name="ht">The hit test value.</param>
<param name="rowIndex">Row index of the cell.</param>
<param name="colIndex">Column index of the cell.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.ScheduleResizeCellsMouseController.DrawCalendarCellInvertRect(Syncfusion.Windows.Forms.Grid.GridControl)">
<summary>
Draws the calendar cell invert rectangle.
</summary>
<param name="grid1">The <see cref="T:Syncfusion.Windows.Forms.Grid.GridControl"/>.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.ScheduleResizeCellsMouseController.DrawHeaderInvertRect(System.Boolean)">
<summary>
Draws the header invert rectangle.
</summary>
<param name="ignoreOldHeaderRange">Indicates whether header range should be ignored.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.ScheduleResizeCellsMouseController.DrawInvertRect(System.Drawing.Rectangle,System.Boolean)">
<summary>
Draws the invert rectangle.
</summary>
<param name="rect">The rectangle to invert.</param>
<param name="setOrReset">Indicates whether set or reset.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.ScheduleResizeCellsMouseController.DrawMarkerRect(System.Drawing.Rectangle,System.Boolean)">
<summary>
Draws the marker rectangle.
</summary>
<param name="rect">The rectangle to marker.</param>
<param name="setOrReset">Indicates whether set or reset.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.ScheduleResizeCellsMouseController.BeginResizing(System.Int32,System.Int32,Syncfusion.Windows.Forms.Schedule.ResizingCellsMode,System.Drawing.Point)">
<summary>
Starts the resizing action of ScheduleControl.
</summary>
<param name="rowIndex">Row index of the cell.</param>
<param name="colIndex">Column index of the cell.</param>
<param name="nResizingCellsMode">Cell's resizing mode.</param>
<param name="point">Resizing starting position.</param>
<returns>True if resizing is started otherwise false.</returns>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.ScheduleResizeCellsMouseController.MoveMarker(System.Drawing.Size,System.Drawing.Point)">
<summary>
Moves the marker.
</summary>
<param name="size">The size of the marker.</param>
<param name="point">The location of the marker.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.ScheduleResizeCellsMouseController.CancelResizing">
<summary>
Cancels the resizing.
</summary>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.ScheduleResizeCellsMouseController.EndResizing(System.Drawing.Size,System.Drawing.Point)">
<summary>
Ends the resizing action.
</summary>
<param name="size">The size of the control.</param>
<param name="point">Resizing location.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.ScheduleResizeCellsMouseController.UpdateRowHeights(System.Int32,System.Int32,System.Int32[])">
<summary>
Updates the row heights of the grid.
</summary>
<param name="fromRowIndex">Row index from begin update.</param>
<param name="toRowIndex">Row index to end update</param>
<param name="savedHeights">Saved row heights.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.ScheduleResizeCellsMouseController.UpdateColWidths(System.Int32,System.Int32,System.Int32[])">
<summary>
Updates the column widths of the grid.
</summary>
<param name="fromColIndex">Column index from begin update.</param>
<param name="toColIndex">Column index to end update</param>
<param name="savedWidths">Saved row heights.</param>
</member>
<member name="T:Syncfusion.Windows.Forms.Schedule.ScheduleResizeCellsMouseController.ResizeCellsHitTestInfo">
<summary>
Implements the resizing cells hit test information.
</summary>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.ScheduleResizeCellsMouseController.ResizeCellsHitTestInfo.#ctor(Syncfusion.Windows.Forms.Schedule.ScheduleResizeCellsMouseController,Syncfusion.Windows.Forms.Grid.GridControlBase,System.Drawing.Point,Syncfusion.Windows.Forms.Grid.GridResizeCellsReason)">
<summary>
Initializes a new instance of the <see cref="T:Syncfusion.Windows.Forms.Schedule.ScheduleResizeCellsMouseController.ResizeCellsHitTestInfo"/> class and attaches it to a grid.
</summary>
<param name="resizeUI">The <see cref="T:Syncfusion.Windows.Forms.Schedule.ScheduleResizeCellsMouseController"/></param>
<param name="grid">The grid to test the hit.</param>
<param name="point">The location of the hit test.</param>
<param name="reason">The <see cref="T:Syncfusion.Windows.Forms.Grid.GridControlBase"/>.</param>
</member>
<member name="P:Syncfusion.Windows.Forms.Schedule.ScheduleResizeCellsMouseController.Name">
<override/>
<summary>
Gets the name of the hit test.
</summary>
</member>
<member name="P:Syncfusion.Windows.Forms.Schedule.ScheduleResizeCellsMouseController.Cursor">
<override/>
<summary>
Gets the cursor on hit test.
</summary>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.ScheduleResizeCellsMouseController.MouseHoverEnter">
<override/>
<summary>Overridden to do nothing.</summary>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.ScheduleResizeCellsMouseController.MouseHover(System.Windows.Forms.MouseEventArgs)">
<override/>
<summary>Overridden to do nothing.</summary>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.ScheduleResizeCellsMouseController.MouseHoverLeave(System.EventArgs)">
<override/>
<summary>Overridden to do nothing.</summary>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.ScheduleResizeCellsMouseController.MouseDown(System.Windows.Forms.MouseEventArgs)">
<override/>
<summary>OVerriden to raise the left mouse down and double click.</summary>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.ScheduleResizeCellsMouseController.MouseMove(System.Windows.Forms.MouseEventArgs)">
<override/>
<summary>Overridden to raise the left mouse move.</summary>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.ScheduleResizeCellsMouseController.MouseUp(System.Windows.Forms.MouseEventArgs)">
<override/>
<summary>Overridden to raise the left mouse up.</summary>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.ScheduleResizeCellsMouseController.CancelMode">
<override/>
<summary>Overridden to cancel the resizing.</summary>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.ScheduleResizeCellsMouseController.IsSpanItemAtPoint(System.Drawing.Point)">
<summary>
Determines whether schedule item is spanned at specified position.
</summary>
<param name="point">
The location.
</param>
<returns>True if there is an item at the given point.</returns>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.ScheduleResizeCellsMouseController.HitTest(System.Windows.Forms.MouseEventArgs,Syncfusion.Windows.Forms.IMouseController)">
<override/>
<summary>
Returns a value indicating the context at the given mouse position.
</summary>
<param name="e">The <see cref="T:System.Windows.Forms.EventArgs"/> that contains the event data.</param>
<param name="controller">The <see cref="T:Syncfusion.Windows.Forms.IMouseController"/>.</param>
<returns>A value indicating the context at the given mouse position.</returns>
</member>
<member name="F:Syncfusion.Windows.Forms.Schedule.ScheduleResizeCellsMouseController.AutoScrollTimeInterval">
<summary>
Time interval in milliseconds of the between scrolls during a ScheduleAppointment
drag when the item is at a visible border.
</summary>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.ScheduleResizeCellsMouseController.InitialAutoScrollOnDemand">
<summary>
Initiates the auto scrolling.
</summary>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.ScheduleResizeCellsMouseController.AutoTimerCleanUp">
<summary>
Disposes the auto scroll timer.
</summary>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.ScheduleResizeCellsMouseController.t_Tick(System.Object,System.EventArgs)">
<summary>
Used to set scrolling based on the timer tick.
</summary>
<param name="sender">The source control.</param>
<param name="e">The <see cref="T:System.EventArgs"/> that contains the event data.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.ScheduleResizeCellsMouseController.CheckIfScrollNeeded(System.Drawing.Point)">
<summary>
Determines whether scrolling is needed on specified position.
</summary>
<param name="pt">The position to check.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.ScheduleResizeCellsMouseController.RaiseResizingColumns(Syncfusion.Windows.Forms.Grid.GridRangeInfo,System.Int32@,Syncfusion.Windows.Forms.Grid.GridResizeCellsReason,System.Drawing.Point)">
<summary>
Determines whether columns can be resized for the specified position.
</summary>
<param name="columns">The range of columns.</param>
<param name="width">A value of column width.</param>
<param name="reason">The <see cref="T:Syncfusion.Windows.Forms.Grid.GridResizeCellsReason"/>.</param>
<param name="point">The position to check.</param>
<returns>True if column can be resized otherwise false.</returns>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.ScheduleResizeCellsMouseController.RaiseResizingRows(Syncfusion.Windows.Forms.Grid.GridRangeInfo,System.Int32@,Syncfusion.Windows.Forms.Grid.GridResizeCellsReason,System.Drawing.Point)">
<summary>
Determines whether rows can be resized for the specified position.
</summary>
<param name="rows">The range of rows.</param>
<param name="height">A value of row height.</param>
<param name="reason">The <see cref="T:Syncfusion.Windows.Forms.Grid.GridResizeCellsReason"/>.</param>
<param name="point">The position to check.</param>
<returns>True if row can be resized otherwise false.</returns>
</member>
<member name="T:Syncfusion.Windows.Forms.Schedule.ScheduleDragLineWindow">
<summary>
Implements the window for performing row or column resizing.
</summary>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.ScheduleDragLineWindow.#ctor">
<summary>
Initializes a new instance of the <see cref="T:Syncfusion.Windows.Forms.Schedule.ScheduleDragLineWindow"/> class.
</summary>
</member>
<member name="P:Syncfusion.Windows.Forms.Schedule.ScheduleDragLineWindow.CreateParams">
<override/>
<summary>
Gets the required creation parameters when the control handle is created.
</summary>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.ScheduleDragLineWindow.OnPaint(System.Windows.Forms.PaintEventArgs)">
<override/>
<summary>
Overridden to draw the rectangle.
</summary>
<param name="pe">The <see cref="T:System.Windows.Forms.PaintEventArgs"/> that contains the event data.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.ScheduleDragLineWindow.ShowAt(System.Drawing.Rectangle,Syncfusion.Windows.Forms.Grid.GridBorder)">
<summary>
Shows the windows with specified bounds and border.
</summary>
<param name="bounds">The <see cref="T:System.Drawing.Rectangle"/> to set the size.</param>
<param name="border">The border of the window.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.Schedule.ScheduleDragLineWindow.Fade">
<summary>
Hides the window.
</summary>
</member>
<member name="P:Syncfusion.Windows.Forms.Schedule.ScheduleDragLineWindow.Border">
<summary>
Gets or sets the border.
</summary>
</member>
<member name="T:Syncfusion.NamespaceDoc">
<summary>
The Syncfusion namespace contains classes that defines the value and reference data types, events and event handlers, interfaces, attributes and processing the exceptions.
</summary>
</member>
<member name="T:Syncfusion.ScheduleWindowsAssembly">
<exclude/>
<summary>
This class holds the name of the Syncfusion.Grid.Windows assembly and provides a helper
routine that helps with resolving types when loading a serialization stream and when
the framework probes for assemblies by reflection.
</summary>
</member>
<member name="F:Syncfusion.ScheduleWindowsAssembly.Name">
<summary>
The full name of this assembly without version information: "Syncfusion.Grid.Windows"
</summary>
</member>
<member name="F:Syncfusion.ScheduleWindowsAssembly.Assembly">
<summary>
A reference to the <see cref="T:System.Reflection.Assembly"/> for the Grid assembly.
</summary>
</member>
<member name="F:Syncfusion.ScheduleWindowsAssembly.RootNamespace">
<summary>
The root namespace of this assembly. Used internally for locating resources within the assembly.
</summary>
</member>
<member name="M:Syncfusion.ScheduleWindowsAssembly.AssemblyResolver(System.Object,System.ResolveEventArgs)">
<summary>
This delegate helps with resolving types and can be used as a eventhandler
for a <see cref="E:System.AppDomain.AssemblyResolve"/> event.
</summary>
<param name="sender">The source of the event.</param>
<param name="e">The event data with information about the type.</param>
<returns>A reference to the assembly where the type is located.</returns>
<remarks>
Use this handler when reading back types from a serialization stread
saved with an earlier version of this assembly.
</remarks>
</member>
</members>
</doc>