Class RecurringEditConfirmationForm
Displays a confirmation dialog for editing a recurring appointment.
Inheritance
Namespace: Syncfusion.Windows.Forms.Schedule
Assembly: Syncfusion.Schedule.Windows.dll
Syntax
public class RecurringEditConfirmationForm : Form
Constructors
RecurringEditConfirmationForm()
Initializes a new instance of the RecurringEditConfirmationForm class.
Declaration
public RecurringEditConfirmationForm()
Fields
DisplayStrings
Holds various strings used in the AppointmentForm.
Declaration
public static string[] DisplayStrings
Field Value
Type |
---|
System.String[] |
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.
Examples
Here are the default values of this string array.
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
};
Properties
CreateParams
Gets the required creation parameters when the control handle is created.
Declaration
protected override CreateParams CreateParams { get; }
Property Value
Type |
---|
System.Windows.Forms.CreateParams |
Font
Gets or sets the System.Drawing.Font value for Form.
Declaration
public override Font Font { get; set; }
Property Value
Type |
---|
System.Drawing.Font |
IgnoreScheduleRTLSettings
Gets or sets a value indicating whether this form will use the RTL settings from the ScheduleControl to decide whether to mirror the form.
Declaration
public static bool IgnoreScheduleRTLSettings { get; set; }
Property Value
Type |
---|
System.Boolean |
Result
Gets the edit action specified by the user in this dialog.
Declaration
public RecurringAppointmentEditAction Result { get; }
Property Value
Type |
---|
RecurringAppointmentEditAction |
Remarks
This is the return value to indicate what choice the user made in the dialog.
Methods
Dispose(Boolean)
Clean up any resources being used.
Declaration
protected override void Dispose(bool disposing)
Parameters
Type | Name | Description |
---|---|---|
System.Boolean | disposing | True if managed resources should be disposed; otherwise, false. |