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