Represents an appointment in RadzenScheduler<T>
Object
Namespace: Radzen.Blazor
Assembly: Radzen.Blazor.dll
public class AppointmentDataRepresents an appointment in RadzenScheduler<T>
public AppointmentData()Gets or sets the data associated with the appointment
public object Data { get; set; }
| Type | Description |
|---|---|
| object | Gets or sets the data associated with the appointment |
Gets or sets the end of the appointment.
public DateTime End { get; set; }
| Type | Description |
|---|---|
| DateTime | Gets or sets the end of the appointment. |
Gets or sets the start of the appointment.
public DateTime Start { get; set; }
| Type | Description |
|---|---|
| DateTime | Gets or sets the start of the appointment. |
Gets or sets the text of the appointment.
public string Text { get; set; }
| Type | Description |
|---|---|
| string | Gets or sets the text of the appointment. |
Determines whether the specified object is equal to this instance. Used to check if two appointments are equal.
public override bool Equals(object obj)
| Type | Name | Description |
|---|---|---|
| object | obj | The object to compare with this instance. |
| Type | Description |
|---|---|
| bool | true if the specified is equal to this instance; otherwise, false. |
Returns a hash code for this instance.
public override int GetHashCode()
| Type | Description |
|---|---|
| int | A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. |